home *** CD-ROM | disk | FTP | other *** search
- /**
- *
- * BDIRECT.H Header file for C TOOLS PLUS Directory Maintenance functions
- *
- * Version 3.0 (C)Copyright Blaise Computing Inc. 1983, 1984, 1985, 1986
- *
- **/
-
- #ifndef DEF_BDIRECT /* Prevent redefinition. */
-
- struct file_spec /* File information structure */
- { /* used by DRSFIRST and DRSNEXT */
- int fattr; /* Attribute (1 byte) */
- unsigned ftime; /* Time stamp */
- unsigned fdate; /* Date stamp */
- long fsize; /* File size in bytes */
- char fname[13]; /* File name */
- };
- #define FSPEC struct file_spec
-
- extern char b_drbuffer[48]; /* Communication area between */
- /* DRSFIRST and DRSNEXT */
-
- int drmkdir(char *); /* Create a subdirectory */
- /* */
- int drrmdir(char *); /* Remove a subdirectory */
- /* */
- int drcurdir(int, char *); /* Return the current directory */
- /* */
- int drchdir(char *); /* Change the current directory */
- /* on a given drive. */
- /* */
- int drretdrv(void); /* Return the default drive */
- /* */
- int drsetdrv(int); /* Set the default drive */
- /* */
- int drsfirst(char *,int,FSPEC *); /* Find the first matching file */
- /* */
- int drsnext(FSPEC *); /* Find the next matching file */
- /* */
- int drrename(char *,char *); /* Rename a file (on same drive)*/
- /* */
- int drretstp(int,unsigned *, /* Return the time/date stamp */
- unsigned *); /* of an open file */
- /* */
- int drsetstp(int,unsigned,unsigned); /* Set the time/date stamp of */
- /* an open file */
- /* */
- int drstp2dt(unsigned, /* Convert date stamp to date */
- int *,int *,int *); /* */
- /* */
- int drdt2stp(unsigned *, /* Convert date to date stamp */
- int,int,int); /* */
- /* */
- int drstp2tm(unsigned, /* Convert time stamp to time */
- int *,int *,int *); /* */
- /* */
- int drtm2stp(unsigned *, /* Convert time to time stamp */
- int,int,int); /* */
- /* */
- int drretvol(int,char *, /* Return volume label */
- unsigned *,unsigned *); /* */
- /* */
- int drsetvol(int,char *); /* Create or alter volume label */
- /* */
- int drremvol(int); /* Remove volume label */
-
- /* Aliases for former names */
-
- #define drbuffer b_drbuffer
-
-
- #define DEF_BDIRECT 1 /* Prevent second reading of */
- /* these definitions. */
-
- #endif /* Ends "#ifndef DEF_BDIRECT" */