26 lines
512 B
C
26 lines
512 B
C
|
/**
|
||
|
* 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
|
||
|
|
||
|
int __cdecl _wchdir(const wchar_t*);
|
||
|
wchar_t* __cdecl _wgetcwd(wchar_t*,int);
|
||
|
wchar_t* __cdecl _wgetdcwd(int,wchar_t*,int);
|
||
|
int __cdecl _wmkdir(const wchar_t*);
|
||
|
int __cdecl _wrmdir(const wchar_t*);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _WDIRECT_DEFINED */
|