From: Piotr Caban piotr@codeweavers.com
--- include/msvcrt/corecrt_wstdlib.h | 1 + include/msvcrt/stdlib.h | 1 + 2 files changed, 2 insertions(+)
diff --git a/include/msvcrt/corecrt_wstdlib.h b/include/msvcrt/corecrt_wstdlib.h index f6c68bb937a..6bea500f6ec 100644 --- a/include/msvcrt/corecrt_wstdlib.h +++ b/include/msvcrt/corecrt_wstdlib.h @@ -22,6 +22,7 @@ _ACRTIMP wchar_t* __cdecl _ui64tow(unsigned __int64,wchar_t*,int); _ACRTIMP errno_t __cdecl _ui64tow_s(unsigned __int64, wchar_t*, size_t, int); _ACRTIMP wchar_t* __cdecl _ultow(__msvcrt_ulong,wchar_t*,int); _ACRTIMP errno_t __cdecl _ultow_s(__msvcrt_ulong, wchar_t*, size_t, int); +_ACRTIMP errno_t __cdecl _wdupenv_s(wchar_t**,size_t*,const wchar_t*); _ACRTIMP wchar_t* __cdecl _wfullpath(wchar_t*,const wchar_t*,size_t); _ACRTIMP wchar_t* __cdecl _wgetenv(const wchar_t*); _ACRTIMP errno_t __cdecl _wgetenv_s(size_t *,wchar_t *,size_t,const wchar_t *); diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h index 8d64246c0b5..67c78b0cfee 100644 --- a/include/msvcrt/stdlib.h +++ b/include/msvcrt/stdlib.h @@ -164,6 +164,7 @@ _ACRTIMP void __cdecl _beep(unsigned int,unsigned int); _ACRTIMP unsigned short __cdecl _byteswap_ushort(unsigned short); _ACRTIMP __msvcrt_ulong __cdecl _byteswap_ulong(__msvcrt_ulong); _ACRTIMP unsigned __int64 __cdecl _byteswap_uint64(unsigned __int64); +_ACRTIMP errno_t __cdecl _dupenv_s(char**,size_t*,const char*); _ACRTIMP char* __cdecl _ecvt(double,int,int*,int*); _ACRTIMP char* __cdecl _fcvt(double,int,int*,int*); _ACRTIMP char* __cdecl _fullpath(char*,const char*,size_t);