2020-03-09 16:53:42 +00:00
|
|
|
/**
|
|
|
|
* This file has no copyright assigned and is placed in the Public Domain.
|
|
|
|
* This file is part of the Wine project.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _WDIRECT_DEFINED
|
|
|
|
#define _WDIRECT_DEFINED
|
|
|
|
|
|
|
|
#include <corecrt.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-11-24 17:50:06 +00:00
|
|
|
_ACRTIMP int __cdecl _wchdir(const wchar_t*);
|
|
|
|
_ACRTIMP wchar_t* __cdecl _wgetcwd(wchar_t*,int);
|
|
|
|
_ACRTIMP wchar_t* __cdecl _wgetdcwd(int,wchar_t*,int);
|
|
|
|
_ACRTIMP int __cdecl _wmkdir(const wchar_t*);
|
|
|
|
_ACRTIMP int __cdecl _wrmdir(const wchar_t*);
|
2020-03-09 16:53:42 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _WDIRECT_DEFINED */
|