view nt/inc/pwd.h @ 46471:028a5b2de9e4

(chars_in_text, multibyte_chars_in_text, copy_text): (count_size_as_multibyte, count_combining_before): (count_combining_after, insert_1, insert_1_both, message_dolog): (insert, insert_and_inherit, insert_before_markers) (insert_before_markers_and_inherit, set_message, message2): (message2_dolog, build_string, make_string, make_unibyte_string): (make_multibyte_string, intern, oblookup, report_file_error): (fast_c_string_match_ignore_case, temp_echo_area_glyphs): (emacs_open, xstrdup): Declarations updated.
author Ken Raeburn <raeburn@raeburn.org>
date Tue, 16 Jul 2002 19:48:42 +0000
parents 6df655ed941d
children 695cf19ef79e d7ddb3e565de
line wrap: on
line source

#ifndef _PWD_H_
#define _PWD_H_
/*
 * pwd.h doesn't exist on NT, so we put together our own.
 */

struct passwd {
    char *pw_name;
    char *pw_passwd;
    int   pw_uid;
    int   pw_gid;
    int   pw_quota;
    char *pw_gecos;
    char *pw_dir;
    char *pw_shell;
};

typedef int uid_t;
typedef uid_t gid_t;

#endif /* _PWD_H_ */