1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-08 15:35:02 +00:00
emacs/nt/inc/pwd.h

27 lines
499 B
C
Raw Normal View History

1995-05-09 02:25:50 +00:00
#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;
unsigned pw_uid; /* Vista's TrustedInstaller has a very large RID */
unsigned pw_gid;
int pw_quota;
char *pw_gecos;
char *pw_dir;
char *pw_shell;
1995-05-09 02:25:50 +00:00
};
typedef unsigned uid_t;
2001-10-12 13:08:48 +00:00
typedef uid_t gid_t;
2005-06-04 20:25:50 +00:00
struct passwd * getpwnam (char *);
struct passwd * getpwuid (unsigned);
2005-06-04 20:25:50 +00:00
1995-05-09 02:25:50 +00:00
#endif /* _PWD_H_ */
2003-09-01 15:45:59 +00:00