file.h 172 B

12345678910111213
  1. /*
  2. * sys\file.h doesn't exist on NT - only needed for these constants
  3. */
  4. #ifndef D_OK
  5. #define F_OK 0
  6. #define X_OK 1
  7. #define W_OK 2
  8. #define R_OK 4
  9. #define D_OK 8
  10. #endif