home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BFILE.H -- Header File for C TOOLS PLUS File Handling Functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1986
- *
- **/
-
- #ifndef DEF_BFILE /* Prevent redefinition. */
-
- #include <butility.h>
-
- #define RDONLY 0 /* File access constants */
- #define WRTONLY 1
- #define RDWRT 2
-
- /* File sharing modes */
- #define COMPATIBILITY (0 << 4) /* DOS 2.x style */
- #define DENY_RW (1 << 4) /* Deny Read/Write (Exclusive) */
- #define DENY_WRITE (2 << 4)
- #define DENY_READ (3 << 4)
- #define DENY_NONE (4 << 4)
-
- /* File inheritance modes */
- #define INHERIT (0 << 7) /* Inherited by child processes */
- #define NO_INHERIT (1 << 7) /* Private to parent process */
-
- /* File attributes */
- #define AT_GENERAL 0
- #define AT_RDONLY 1
- #define AT_HIDDEN 2
- #define AT_SYSTEM 4
- #define AT_VOLUME 8
- #define AT_DIR 16
- #define AT_ARCHIVE 32
-
- #define ABSOLUTE 0 /* Constants for FLSEEK */
- #define RELATIVE 1
- #define ENDFILE 2
-
- #define MAX_FLEN 67 /* Maximum length of filenames */
- /* returned by FLNORM, DRCURDIR,*/
- /* etc. */
-
- int flcreate(char *,int *,int); /* Create a file (even if it */
- /* already exists). */
- /* */
- int flnew(char *,int *,int); /* Create a file (but not if it */
- /* already exists) (DOS version */
- /* 3 or greater only). */
- /* */
- int fltemp(char *,int *,int); /* Create a file with a unique */
- /* name (DOS version 3 or */
- /* greater only). */
- /* */
- int flopen(char *,int *,int); /* Open a file */
- /* */
- int flclose(int); /* Close a file */
- /* */
- int flnorm(char *,char *,int *); /* Normalize a path name (put */
- /* into standard form) */
- /* */
- int flsetatr(char *,int); /* Set file attribute */
- /* */
- int flretatr(char *,int *); /* Return file attribute */
- /* */
- int flseek(int,int,long *); /* Position the file pointer */
- /* */
- int flread(int,ADS *, /* Read from a file to a buffer */
- unsigned,unsigned *); /* */
- /* */
- int flwrite(int,ADS *, /* Write from a buffer to file */
- unsigned,unsigned *); /* */
- /* */
- int fldelete(char *); /* Delete a file */
- /* */
- int flsetdta(ADS *); /* Set the Disk Transfer Area */
- /* */
- int flretdta(ADS *); /* Return the DTA location */
-
-
- #define DEF_BFILE 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BFILE" */