home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c060 / 5.ddi / DIR.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  1.4 KB  |  57 lines

  1. /*    dir.h
  2.  
  3.     Defines structures, macros, and functions for dealing with
  4.     directories and pathnames.
  5.  
  6.     Copyright (c) Borland International 1987,1988
  7.     All Rights Reserved.
  8. */
  9. #if __STDC__
  10. #define _Cdecl
  11. #else
  12. #define _Cdecl    cdecl
  13. #endif
  14.  
  15. #if     !defined(__DIR_DEF_)
  16. #define __DIR_DEF_
  17.  
  18. struct    ffblk    {
  19.     char        ff_reserved[21];
  20.     char        ff_attrib;
  21.     unsigned    ff_ftime;
  22.     unsigned    ff_fdate;
  23.     long        ff_fsize;
  24.     char        ff_name[13];
  25. };
  26.  
  27. #define WILDCARDS 0x01
  28. #define EXTENSION 0x02
  29. #define FILENAME  0x04
  30. #define DIRECTORY 0x08
  31. #define DRIVE      0x10
  32.  
  33. #define MAXPATH   80
  34. #define MAXDRIVE  3
  35. #define MAXDIR      66
  36. #define MAXFILE   9
  37. #define MAXEXT      5
  38.  
  39. int     _Cdecl chdir        (const char *path);
  40. int     _Cdecl findfirst    (const char *path, struct ffblk *ffblk, 
  41.                  int attrib);
  42. int     _Cdecl findnext    (struct ffblk *ffblk);
  43. void     _Cdecl fnmerge        (char *path,const char *drive,const char *dir,
  44.                  const char *name, const char *ext);
  45. int     _Cdecl fnsplit        (const char *path, char *drive, char *dir, 
  46.                  char *name, char *ext);
  47. int     _Cdecl getcurdir    (int drive, char *directory);
  48. char    *_Cdecl getcwd        (char *buf, int buflen);
  49. int     _Cdecl getdisk        (void);
  50. int     _Cdecl mkdir        (const char *path);
  51. char    *_Cdecl mktemp        (char *template);
  52. int     _Cdecl rmdir        (const char *path);
  53. char    *_Cdecl searchpath    (const char *file);
  54. int     _Cdecl setdisk        (int drive);
  55.  
  56. #endif
  57.