home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 1.ddi / BFILE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1986-08-05  |  3.0 KB  |  86 lines

  1. /**
  2. *
  3. *  BFILE.H -- Header File for C TOOLS PLUS File Handling Functions
  4. *
  5. *  Version 3.0     (C)Copyright Blaise Computing Inc.  1983, 1984, 1986
  6. *
  7. **/
  8.  
  9. #ifndef DEF_BFILE              /* Prevent redefinition.          */
  10.  
  11. #include <butility.h>
  12.  
  13. #define RDONLY           0          /* File access constants          */
  14. #define WRTONLY        1
  15. #define RDWRT           2
  16.  
  17.                       /* File sharing modes          */
  18. #define COMPATIBILITY (0 << 4)          /* DOS 2.x style              */
  19. #define DENY_RW       (1 << 4)          /* Deny Read/Write (Exclusive)  */
  20. #define DENY_WRITE    (2 << 4)
  21. #define DENY_READ     (3 << 4)
  22. #define DENY_NONE     (4 << 4)
  23.  
  24.                       /* File inheritance modes       */
  25. #define INHERIT       (0 << 7)          /* Inherited by child processes */
  26. #define NO_INHERIT    (1 << 7)          /* Private to parent process    */
  27.  
  28.                       /* File attributes          */
  29. #define AT_GENERAL  0
  30. #define AT_RDONLY   1
  31. #define AT_HIDDEN   2
  32. #define AT_SYSTEM   4
  33. #define AT_VOLUME   8
  34. #define AT_DIR       16
  35. #define AT_ARCHIVE 32
  36.  
  37. #define ABSOLUTE    0              /* Constants for FLSEEK          */
  38. #define RELATIVE    1
  39. #define ENDFILE     2
  40.  
  41. #define MAX_FLEN   67              /* Maximum length of filenames  */
  42.                       /* returned by FLNORM, DRCURDIR,*/
  43.                       /* etc.                  */
  44.  
  45. int flcreate(char *,int *,int);       /* Create a file (even if it    */
  46.                       /* already exists).          */
  47.                       /*                  */
  48. int flnew(char *,int *,int);          /* Create a file (but not if it */
  49.                       /* already exists) (DOS version */
  50.                       /* 3 or greater only).          */
  51.                       /*                  */
  52. int fltemp(char *,int *,int);          /* Create a file with a unique  */
  53.                       /* name (DOS version 3 or       */
  54.                       /* greater only).           */
  55.                       /*                  */
  56. int flopen(char *,int *,int);          /* Open a file              */
  57.                       /*                  */
  58. int flclose(int);              /* Close a file              */
  59.                       /*                  */
  60. int flnorm(char *,char *,int *);      /* Normalize a path name (put   */
  61.                       /* into standard form)          */
  62.                       /*                  */
  63. int flsetatr(char *,int);          /* Set file attribute          */
  64.                       /*                  */
  65. int flretatr(char *,int *);          /* Return file attribute          */
  66.                       /*                  */
  67. int flseek(int,int,long *);          /* Position the file pointer    */
  68.                       /*                  */
  69. int flread(int,ADS *,              /* Read from a file to a buffer */
  70.        unsigned,unsigned *);      /*                  */
  71.                       /*                  */
  72. int flwrite(int,ADS *,              /* Write from a buffer to file  */
  73.         unsigned,unsigned *);     /*                  */
  74.                       /*                  */
  75. int fldelete(char *);              /* Delete a file              */
  76.                       /*                  */
  77. int flsetdta(ADS *);              /* Set the Disk Transfer Area   */
  78.                       /*                  */
  79. int flretdta(ADS *);              /* Return the DTA location      */
  80.  
  81.  
  82. #define DEF_BFILE    1              /* Prevent second reading of    */
  83.                       /* these definitions.          */
  84.  
  85. #endif                      /* Ends "#ifndef DEF_BFILE"     */
  86.