home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / wgetcwd.c < prev    next >
C/C++ Source or Header  |  1998-06-17  |  762b  |  30 lines

  1. /***
  2. *wgetcwd.c - get current working directory (wchar_t version)
  3. *
  4. *       Copyright (c) 1993-1997, Microsoft Corporation. All rights reserved.
  5. *
  6. *Purpose:
  7. *
  8. *       contains functions _getcwd, _getdcwd and _getcdrv for getting the
  9. *       current working directory.  getcwd gets the c.w.d. for the default disk
  10. *       drive, whereas _getdcwd allows one to get the c.w.d. for whatever disk
  11. *       drive is specified. _getcdrv gets the current drive.
  12. *
  13. *******************************************************************************/
  14.  
  15.  
  16. #define WPRFLAG 1
  17.  
  18. #ifndef _UNICODE
  19. #define _UNICODE 1
  20. #endif  /* _UNICODE */
  21.  
  22. #ifndef UNICODE
  23. #define UNICODE 1
  24. #endif  /* UNICODE */
  25.  
  26. #undef _MBCS /* UNICODE not _MBCS */
  27.  
  28. #include "getcwd.c"
  29.  
  30.