home *** CD-ROM | disk | FTP | other *** search
- /*
- * MICRO-C MS-DOS File system definitions
- *
- * Copyright 1989,1990 Dave Dunfield
- * All rights reserved.
- */
-
- #define PATH_SIZE 65 /* Max. size of pathname (64 + Z) */
-
- /* File attribute bits in directory entry */
- #define READONLY 0x01 /* File cannot be written */
- #define HIDDEN 0x02 /* File skipped in normal searches */
- #define SYSTEM 0x04 /* File is considered part of system */
- #define VOLUME 0x08 /* Directory entry is volume label */
- #define DIRECTORY 0x10 /* File is a directory */
- #define ARCHIVE 0x20 /* File has been modified */
-