Mercurial > emacs
annotate nt/inc/sys/file.h @ 82993:0abaf12fa706
Merged in changes from CVS HEAD
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-10
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-11
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-12
Add section on button package to lisp reference manual
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-13
Minor tweaks to Buttons section in lispref/display.texi
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-14
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-33
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Fri, 02 Jan 2004 04:37:46 +0000 |
parents | 695cf19ef79e |
children | 375f2633d815 ef719132ddfa |
rev | line source |
---|---|
11766 | 1 /* |
15134
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
2 * sys\file.h doesn't exist on NT - only needed for these constants |
11766 | 3 */ |
15134
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
4 |
31090
69b7e5c8da03
(F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is
Andrew Innes <andrewi@gnu.org>
parents:
22361
diff
changeset
|
5 #ifndef D_OK |
15134
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
6 #define F_OK 0 |
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
7 #define X_OK 1 |
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
8 #define W_OK 2 |
cc3c8961d60a
(F_OK, X_OK, W_OK, R_OK): New macros.
Geoff Voelker <voelker@cs.washington.edu>
parents:
11766
diff
changeset
|
9 #define R_OK 4 |
22361 | 10 #define D_OK 8 |
31090
69b7e5c8da03
(F_OK, X_OK, W_OK, R_OK, D_OK): Define if D_OK is
Andrew Innes <andrewi@gnu.org>
parents:
22361
diff
changeset
|
11 #endif |
52401 | 12 |
13 /* arch-tag: 7df3e73e-56bc-4ad9-b699-33149ea47959 | |
14 (do not change this comment) */ |