view nt/inc/pwd.h @ 104673:317dde5b902b

* net/tramp.el (all): Replace "'(lambda" by "(lambda". (tramp-handle-file-local-copy): Unset `file-name-handler-alist' when writing the temp file. Otherwise, epa-file gets confused. (tramp-register-file-name-handlers): Make it a defun. Move also `epa-file-handler' to the front of `file-name-handler-alist'. * net/tramp.el (tramp-shell-prompt-pattern): Allow a prompt to start right after a ^M. (tramp-root-regexp, tramp-completion-file-name-regexp-unified) (tramp-completion-file-name-regexp-separate) (tramp-completion-file-name-regexp-url): Use \\` and \\'. (tramp-handle-file-attributes, tramp-set-file-uid-gid): Don't modify last-coding-system-used by accident. (tramp-completion-file-name-handler): Apply the checks here, instead during registration. (tramp-register-file-name-handlers) Renamed from `tramp-register-file-name-handler'. Register both `tramp-file-name-handler' and `tramp-completion-file-name-handler'. (tramp-register-completion-file-name-handler): Removed.
author Michael Albinus <michael.albinus@gmx.de>
date Fri, 28 Aug 2009 12:11:42 +0000
parents 06ca3efb355b
children ef719132ddfa
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;
    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;
};

typedef unsigned uid_t;
typedef uid_t gid_t;

struct passwd * getpwnam (char *);
struct passwd * getpwuid (unsigned);


#endif /* _PWD_H_ */

/* arch-tag: 68308424-cb2b-49ed-bb52-b347fee416bf
   (do not change this comment) */