home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c063 / 1.ddi / INCLUDE.ZIP / DIRECT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-18  |  464 b   |  26 lines

  1. /*  direct.h
  2.  
  3.  
  4.     Defines structures, macros, and functions for dealing with
  5.     directories and pathnames.
  6.  
  7.     Copyright (c) 1991 by Borland International
  8.     All Rights Reserved.
  9. */
  10.  
  11. #include <dir.h>
  12.  
  13. /* Prototypes for MSC functions */
  14.  
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18.  
  19. int    _Cdecl _chdrive(int __drive);
  20. char * _Cdecl _getdcwd(int __drive, char *__buf, int __len);
  21. int    _Cdecl _getdrive(void);
  22.  
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26.