| * Path and directory definitions |
| * Derived from the mingw header written by Colin Peters. |
| * Modified for Wine use by Jon Griffiths and Francois Gouget. |
| * This file is in the public domain. |
| #define __WINE_USE_MSVCRT |
| #include "msvcrt/dos.h" /* For _getdiskfree & co */ |
| char* _getcwd(char*,int); |
| char* _getdcwd(int,char*,int); |
| unsigned long _getdrives(void); |
| int _wchdir(const WCHAR*); |
| WCHAR* _wgetcwd(WCHAR*,int); |
| WCHAR* _wgetdcwd(int,WCHAR*,int); |
| int _wmkdir(const WCHAR*); |
| int _wrmdir(const WCHAR*); |
| #ifndef USE_MSVCRT_PREFIX |
| #endif /* USE_MSVCRT_PREFIX */ |
| #endif /* __WINE_DIRECT_H */ |