1995-05-09 02:25:50 +00:00
|
|
|
/*
|
1996-05-03 18:23:44 +00:00
|
|
|
* sys\file.h doesn't exist on NT - only needed for these constants
|
1995-05-09 02:25:50 +00:00
|
|
|
*/
|
1996-05-03 18:23:44 +00:00
|
|
|
|
2000-08-22 21:53:28 +00:00
|
|
|
#ifndef D_OK
|
1996-05-03 18:23:44 +00:00
|
|
|
#define F_OK 0
|
|
|
|
#define X_OK 1
|
|
|
|
#define W_OK 2
|
|
|
|
#define R_OK 4
|
1998-06-05 15:57:58 +00:00
|
|
|
#define D_OK 8
|
2000-08-22 21:53:28 +00:00
|
|
|
#endif
|