home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / famapi.zip / INCLUDE.ZIP / _ATTRIB.H < prev    next >
Text File  |  1993-06-13  |  947b  |  27 lines

  1. //
  2. //      **************************************************************
  3. //       JdeBP C++ Library Routines      General Public Licence v1.00
  4. //          Copyright (c) 1991,1992  Jonathan de Boyne Pollard
  5. //      **************************************************************
  6. //
  7.  
  8. #if !defined(___ATTRIB_H_INCLUDED)
  9.  
  10. //
  11. //  File attributes for FAT file system.  Used in <dos.h>,
  12. //  <doscalls.h>, and <sys/stat.h>.
  13. //
  14.  
  15. #define _A_NORMAL   0x00    /* Normal file - No read/write restrictions */
  16. #define _A_RDONLY   0x01    /* Read only file */
  17. #define _A_HIDDEN   0x02    /* Hidden file */
  18. #define _A_SYSTEM   0x04    /* System file */
  19. #define _A_VOLID    0x08    /* Volume ID file */
  20. #define _A_SUBDIR   0x10    /* Subdirectory */
  21. #define _A_ARCH     0x20    /* Archive file */
  22. #define _A_DEVICE   0x40    /* Device driver */
  23. #define _A_SHARED   0x80    /* Netware Shareable file */
  24.  
  25. #define ___ATTRIB_H_INCLUDED
  26. #endif
  27.