Mercurial > hg > xemacs-beta
comparison src/nt.h @ 398:74fd4e045ea6 r21-2-29
Import from CVS: tag r21-2-29
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:13:30 +0200 |
parents | e11d67e05968 |
children | b8cc9ab3f761 |
comparison
equal
deleted
inserted
replaced
397:f4aeb21a5bad | 398:74fd4e045ea6 |
---|---|
1 #ifndef _NT_H_ | |
2 #define _NT_H_ | |
3 | |
4 /* Support routines for the NT version of XEmacs. | 1 /* Support routines for the NT version of XEmacs. |
5 Copyright (C) 1994 Free Software Foundation, Inc. | 2 Copyright (C) 1994 Free Software Foundation, Inc. |
6 | 3 |
7 This file is part of XEmacs. | 4 This file is part of XEmacs. |
8 | 5 |
24 /* Adapted for XEmacs by David Hobley <david@spook-le0.cia.com.au> */ | 21 /* Adapted for XEmacs by David Hobley <david@spook-le0.cia.com.au> */ |
25 /* Sync'ed with Emacs 19.34.6 by Marc Paquette <marcpa@cam.org> */ | 22 /* Sync'ed with Emacs 19.34.6 by Marc Paquette <marcpa@cam.org> */ |
26 | 23 |
27 /* #define FULL_DEBUG */ | 24 /* #define FULL_DEBUG */ |
28 | 25 |
26 #ifndef INCLUDED_nt_h_ | |
27 #define INCLUDED_nt_h_ | |
28 | |
29 #ifdef DEBUG_XEMACS | 29 #ifdef DEBUG_XEMACS |
30 #define DebPrint(stuff) _DebPrint stuff | 30 #define DebPrint(stuff) _DebPrint stuff |
31 #else | 31 #else |
32 #define DebPrint(stuff) | 32 #define DebPrint(stuff) |
33 #endif | 33 #endif |
34 | 34 |
35 #define R_OK 4 | 35 #define R_OK 4 |
36 #define W_OK 2 | 36 #define W_OK 2 |
37 #ifdef X_OK | |
38 #undef X_OK | |
39 #endif | |
37 #define X_OK 1 | 40 #define X_OK 1 |
38 #define F_OK 0 | 41 #define F_OK 0 |
39 | 42 |
40 /* File descriptor set emulation. */ | 43 /* File descriptor set emulation. */ |
41 | 44 |
145 time_t convert_time (FILETIME ft); | 148 time_t convert_time (FILETIME ft); |
146 | 149 |
147 extern void init_ntproc (); | 150 extern void init_ntproc (); |
148 extern void term_ntproc (); | 151 extern void term_ntproc (); |
149 | 152 |
150 #endif /* _NT_H_ */ | 153 #endif /* INCLUDED_nt_h_ */ |