home *** CD-ROM | disk | FTP | other *** search
/ The Developer Connection…ice Driver Kit for OS/2 3 / DEV3-D1.ISO / source / util2src / dosh.txt < prev    next >
Encoding:
Text File  |  1992-07-22  |  1.1 KB  |  34 lines

  1. 7/22/92 : The _A_ labels from the old dos.h were added to the util.h header.
  2. They were then #defined as the FILE_ labels from the 2.0 bsedos.h header.
  3.  
  4. From old dos.h
  5.  
  6. #define _A_NORMAL               0x00    /* Normal file - No read/write restrictions */
  7. #define _A_RDONLY               0x01    /* Read only file */
  8. #define _A_HIDDEN               0x02    /* Hidden file */
  9. #define _A_SYSTEM               0x04    /* System file */
  10. #define _A_VOLID                0x08    /* Volume ID file */
  11. #define _A_SUBDIR               0x10    /* Subdirectory */
  12. #define _A_ARCH                 0x20    /* Archive file */
  13.  
  14. From new C:\TOOLKT20\C\OS2H\BSEDOS.H
  15.  
  16.    /* DosOpen/DosQFHandState/DosQueryFileInfo et al file attributes; also */
  17.    /* known as Dos File Mode bits... */
  18.    #define FILE_NORMAL     0x0000
  19.    #define FILE_READONLY   0x0001
  20.    #define FILE_HIDDEN     0x0002
  21.    #define FILE_SYSTEM     0x0004
  22.    #define FILE_DIRECTORY  0x0010
  23.    #define FILE_ARCHIVED   0x0020
  24.  
  25. Files that include dos.h (which isn't supplied by C Set/2)
  26.  
  27. LS.C
  28. SPECLIST.C
  29. FTEST.C
  30. FUTIL.C
  31. CHMOD.C
  32. BMTBL.C
  33. CCP.C
  34.