home *** CD-ROM | disk | FTP | other *** search
- //
- // **************************************************************
- // JdeBP C++ Library Routines General Public Licence v1.00
- // Copyright (c) 1991,1992 Jonathan de Boyne Pollard
- // **************************************************************
- //
-
- #if !defined(___ATTRIB_H_INCLUDED)
-
- //
- // File attributes for FAT file system. Used in <dos.h>,
- // <doscalls.h>, and <sys/stat.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 */
- #define _A_DEVICE 0x40 /* Device driver */
- #define _A_SHARED 0x80 /* Netware Shareable file */
-
- #define ___ATTRIB_H_INCLUDED
- #endif
-