home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Frostbyte's 1980s DOS Shareware Collection
/
floppyshareware.zip
/
floppyshareware
/
GLEN
/
MC20.ZIP
/
FILE.H
< prev
next >
Wrap
Text File
|
1990-08-20
|
565b
|
17 lines
/*
* 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 */