home *** CD-ROM | disk | FTP | other *** search
- /* LLFIO.CH - Header File to simplify use of the Low Level File I/O.
-
- Copyright (c) 1990; The DSW Group, Ltd.
- */
-
- // FOPEN modes
- #define RO_EXCLUSIVE 16
- #define WO_EXCLUSIVE 17
- #define RW_EXCLUSIVE 18
- #define RO_SHARED 64
- #define WO_SHARED 65
- #define RW_SHARED 66
-
- // FCREATE modes
- #define NORMAL_ATTR 0
- #define READONLY_ATTR 1
- #define HIDDEN_ATTR 2
- #define SYSTEM_ATTR 4
-
- // FSEEK MODES
- #define FROM_BOF 0
- #define FROM_CUR 1
- #define FROM_EOF 2
-
- // EOF: LLFIO.CH