Mercurial > emacs
annotate nt/inc/pwd.h @ 40076:d505fb8b523f
(x_fix_overlapping_area, x_write_glyphs, expose_area)
(expose_line, x_erase_phys_cursor): Don't use `inverse_p' field.
(XTreassert_line_highlight, x_change_line_highlight):
Functions removed.
(x_initialize): Don't set reassert_line_highlight_hook or
change_line_highlight_hook.
author | Miles Bader <miles@gnu.org> |
---|---|
date | Sat, 20 Oct 2001 05:44:30 +0000 |
parents | 6df655ed941d |
children | 695cf19ef79e d7ddb3e565de |
rev | line source |
---|---|
11766 | 1 #ifndef _PWD_H_ |
2 #define _PWD_H_ | |
3 /* | |
4 * pwd.h doesn't exist on NT, so we put together our own. | |
5 */ | |
6 | |
7 struct passwd { | |
8 char *pw_name; | |
9 char *pw_passwd; | |
10 int pw_uid; | |
11 int pw_gid; | |
12 int pw_quota; | |
13 char *pw_gecos; | |
14 char *pw_dir; | |
15 char *pw_shell; | |
16 }; | |
17 | |
39823
6df655ed941d
(uid_t, gid_t): New typedefs.
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
18 typedef int uid_t; |
6df655ed941d
(uid_t, gid_t): New typedefs.
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
19 typedef uid_t gid_t; |
6df655ed941d
(uid_t, gid_t): New typedefs.
Andrew Innes <andrewi@gnu.org>
parents:
11766
diff
changeset
|
20 |
11766 | 21 #endif /* _PWD_H_ */ |