home *** CD-ROM | disk | FTP | other *** search
- 7/22/92 : The _A_ labels from the old dos.h were added to the util.h header.
- They were then #defined as the FILE_ labels from the 2.0 bsedos.h header.
-
- From old dos.h
-
- #define _A_NORMAL 0x00 /* Normal file - No read/write restrictions */
- #define _A_RDONLY 0x01 /* Read only file */
- #define _A_HIDDEN 0x02 /* Hidden file */
- #define _A_SYSTEM 0x04 /* System file */
- #define _A_VOLID 0x08 /* Volume ID file */
- #define _A_SUBDIR 0x10 /* Subdirectory */
- #define _A_ARCH 0x20 /* Archive file */
-
- From new C:\TOOLKT20\C\OS2H\BSEDOS.H
-
- /* DosOpen/DosQFHandState/DosQueryFileInfo et al file attributes; also */
- /* known as Dos File Mode bits... */
- #define FILE_NORMAL 0x0000
- #define FILE_READONLY 0x0001
- #define FILE_HIDDEN 0x0002
- #define FILE_SYSTEM 0x0004
- #define FILE_DIRECTORY 0x0010
- #define FILE_ARCHIVED 0x0020
-
- Files that include dos.h (which isn't supplied by C Set/2)
-
- LS.C
- SPECLIST.C
- FTEST.C
- FUTIL.C
- CHMOD.C
- BMTBL.C
- CCP.C
-