msvcr110: Add __crtGetLocaleInfoEx implementation.

This commit is contained in:
Piotr Caban 2015-06-22 12:52:30 +02:00 committed by Alexandre Julliard
parent 443ef6e7a6
commit d940ac2412
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -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.@)
*/ */