Mercurial > emacs
annotate nt/inc/pwd.h @ 59384:a1edc5959dcf
* macfns.c: Include sys/param.h.
[TARGET_API_MAC_CARBON] (mac_nav_event_callback): New declaration
and function.
[TARGET_API_MAC_CARBON] (Fx_file_dialog): Use MAXPATHLEN for size
of filename string. Set event callback function when creating
dialog boxes. Add code conversions for filenames. Don't dispose
apple event descriptor record if failed to create it.
* macterm.c: Include sys/param.h.
[USE_CARBON_EVENTS] (mac_handle_window_event): Add handler for
kEventWindowUpdate.
(install_window_handler) [USE_CARBON_EVENTS]: Register it.
(do_ae_open_documents) [TARGET_API_MAC_CARBON]: Get FSRef instead
of FSSpec from apple event descriptor record.
(do_ae_open_documents) [TARGET_API_MAC_CARBON]: Use MAXPATHLEN for
size of filename string.
[TARGET_API_MAC_CARBON] (mac_do_receive_drag): Likewise.
[TARGET_API_MAC_CARBON] (mac_do_receive_drag): Return error when a
file dialog is in action.
[TARGET_API_MAC_CARBON] (mac_do_track_drag): Likewise. Reject
only when there are no filename items. Set background color
before (un)highlighting the window below the dragged items.
(XTread_socket) [!USE_CARBON_EVENTS]: Don't call do_window_update.
author | Steven Tamm <steventamm@mac.com> |
---|---|
date | Thu, 06 Jan 2005 02:53:39 +0000 |
parents | 695cf19ef79e |
children | 2d45521f8f6d 375f2633d815 |
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_ */ |
52401 | 22 |
23 /* arch-tag: 68308424-cb2b-49ed-bb52-b347fee416bf | |
24 (do not change this comment) */ |