home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / filesbbs / dos / sbbs230b.exe / EXEC.LZH / DIR_ATTR.INC < prev    next >
Encoding:
Text File  |  1995-08-30  |  707 b   |  22 lines

  1. # DIR_ATTR.INC
  2.  
  3. # Copyright 1995 Digital Dynamics, All rights reserved.
  4.  
  5. # Baja include file defining DOS Directory Entry Attribute constants
  6. # Specifically used with the SET_FILE_ATTRIB and GET_FILE_ATTRIB functions
  7.  
  8. # You man include use this file in your source (!include dir_attr.inc),
  9. # but you may not distribute modified versions of this file. It is not
  10. # suggested that you modify this file AT ALL, but rather create your own
  11. # include file(s) for your own constant definitions.
  12.  
  13. !define FA_NORMAL   0x00
  14. !define FA_RDONLY   0x01
  15. !define FA_HIDDEN   0x02
  16. !define FA_SYSTEM   0x04
  17. !define FA_LABEL    0x08
  18. !define FA_DIREC    0x10
  19. !define FA_ARCH     0x20
  20.  
  21. # End of DIR_ATTR.INC
  22.