msvcr110: Add __crtGetLocaleInfoEx implementation.
This commit is contained in:
parent
443ef6e7a6
commit
d940ac2412
|
@ -917,7 +917,7 @@
|
||||||
@ stub -arch=i386,win64 __crtFlsGetValue
|
@ stub -arch=i386,win64 __crtFlsGetValue
|
||||||
@ stub -arch=i386,win64 __crtFlsSetValue
|
@ stub -arch=i386,win64 __crtFlsSetValue
|
||||||
@ stub -arch=i386,win64 __crtGetDateFormatEx
|
@ stub -arch=i386,win64 __crtGetDateFormatEx
|
||||||
@ stub -arch=i386,win64 __crtGetLocaleInfoEx
|
@ cdecl -arch=i386,win64 __crtGetLocaleInfoEx(wstr long ptr long)
|
||||||
@ cdecl __crtGetShowWindowMode() MSVCR110__crtGetShowWindowMode
|
@ cdecl __crtGetShowWindowMode() MSVCR110__crtGetShowWindowMode
|
||||||
@ stub -arch=i386,win64 __crtGetTimeFormatEx
|
@ stub -arch=i386,win64 __crtGetTimeFormatEx
|
||||||
@ stub -arch=i386,win64 __crtGetUserDefaultLocaleName
|
@ stub -arch=i386,win64 __crtGetUserDefaultLocaleName
|
||||||
|
|
|
@ -902,7 +902,7 @@
|
||||||
@ stub -arch=i386,win64 __crtFlsSetValue
|
@ stub -arch=i386,win64 __crtFlsSetValue
|
||||||
@ stub -arch=i386,win64 __crtGetDateFormatEx
|
@ stub -arch=i386,win64 __crtGetDateFormatEx
|
||||||
@ stub __crtGetFileInformationByHandleEx
|
@ stub __crtGetFileInformationByHandleEx
|
||||||
@ stub -arch=i386,win64 __crtGetLocaleInfoEx
|
@ cdecl -arch=i386,win64 __crtGetLocaleInfoEx(wstr long ptr long)
|
||||||
@ cdecl __crtGetShowWindowMode() MSVCR110__crtGetShowWindowMode
|
@ cdecl __crtGetShowWindowMode() MSVCR110__crtGetShowWindowMode
|
||||||
@ stub __crtGetTickCount64
|
@ stub __crtGetTickCount64
|
||||||
@ stub -arch=i386,win64 __crtGetTimeFormatEx
|
@ stub -arch=i386,win64 __crtGetTimeFormatEx
|
||||||
|
|
|
@ -627,6 +627,15 @@ int CDECL __crtGetLocaleInfoW( LCID lcid, LCTYPE type, MSVCRT_wchar_t *buffer, i
|
||||||
return GetLocaleInfoW( lcid, type, buffer, len );
|
return GetLocaleInfoW( lcid, type, buffer, len );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* __crtGetLocaleInfoEx (MSVC110.@)
|
||||||
|
*/
|
||||||
|
int CDECL __crtGetLocaleInfoEx( const WCHAR *locale, LCTYPE type, MSVCRT_wchar_t *buffer, int len )
|
||||||
|
{
|
||||||
|
TRACE("(%s, %x, %p, %d)\n", debugstr_w(locale), type, buffer, len);
|
||||||
|
return GetLocaleInfoEx(locale, type, buffer, len);
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* btowc(MSVCRT.@)
|
* btowc(MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue