home *** CD-ROM | disk | FTP | other *** search
/ Boston 2 / boston-2.iso / DOS / PROGRAM / C / MCC / FILE.H < prev    next >
Text File  |  1993-12-01  |  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.