home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / FC20C.ZIP / FILE.H < prev    next >
Text File  |  1990-08-20  |  565b  |  17 lines

  1. /*
  2.  * MICRO-C MS-DOS File system definitions
  3.  *
  4.  * Copyright 1989,1990 Dave Dunfield
  5.  * All rights reserved.
  6.  */
  7.  
  8. #define    PATH_SIZE    65        /* Max. size of pathname (64 + Z) */
  9.  
  10. /* File attribute bits in directory entry */
  11. #define    READONLY    0x01    /* File cannot be written */
  12. #define    HIDDEN        0x02    /* File skipped in normal searches */
  13. #define    SYSTEM        0x04    /* File is considered part of system */
  14. #define    VOLUME        0x08    /* Directory entry is volume label */
  15. #define DIRECTORY    0x10    /* File is a directory */
  16. #define    ARCHIVE        0x20    /* File has been modified */
  17.