home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / file.h < prev    next >
C/C++ Source or Header  |  1996-09-08  |  633b  |  22 lines

  1. #ifndef _WIN32GNU_SYS_FILE_H_
  2. #define _WIN32GNU_SYS_FILE_H_
  3.  
  4. #include <fcntl.h>
  5.  
  6. #define LOCK_SH         1       /* shared lock */
  7. #define LOCK_EX         2       /* exclusive lock */
  8. #define LOCK_NB         4       /* don't block when locking */
  9. #define LOCK_UN         8       /* unlock */
  10.  
  11. #ifndef _NEXT_FOK_DEFINED_
  12. #define _NEXT_FOK_DEFINED_
  13. #define F_OK            0       /* does file exist */
  14. #define X_OK            1       /* is it executable by caller */
  15. #define W_OK            2       /* writable by caller */
  16. #define R_OK            4       /* readable by caller */
  17. #endif _NEXT_FOK_DEFINED_
  18.  
  19. #endif
  20.  
  21.  
  22.