home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c034 / 4.ddi / INCLUDE / DIRECT.H$ / DIRECT.bin
Encoding:
Text File  |  1989-11-08  |  892 b   |  37 lines

  1. /***
  2. *direct.h - function declarations for directory handling/creation
  3. *
  4. *    Copyright (c) 1985-1990, Microsoft Corporation.  All rights reserved.
  5. *
  6. *Purpose:
  7. *    This include file contains the function declarations for the library
  8. *    functions related to directory handling and creation.
  9. *
  10. ****/
  11.  
  12. #if defined(_DLL) && !defined(_MT)
  13. #error Cannot define _DLL without _MT
  14. #endif
  15.  
  16. #ifdef _MT
  17. #define _FAR_ _far
  18. #else
  19. #define _FAR_
  20. #endif
  21.  
  22.  
  23. #ifndef _SIZE_T_DEFINED
  24. typedef unsigned int size_t;
  25. #define _SIZE_T_DEFINED
  26. #endif
  27.  
  28. /* function prototypes */
  29.  
  30. int _FAR_ _cdecl chdir(const char _FAR_ *);
  31. int _FAR_ _cdecl _chdrive(int);
  32. char _FAR_ * _FAR_ _cdecl getcwd(char _FAR_ *, int);
  33. char _FAR_ * _FAR_ _cdecl _getdcwd(int, char _FAR_ *, int);
  34. int _FAR_ _cdecl _getdrive(void);
  35. int _FAR_ _cdecl mkdir(const char _FAR_ *);
  36. int _FAR_ _cdecl rmdir(const char _FAR_ *);
  37.