mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
kernel32: Added GetSystemDefaultLocaleName().
This commit is contained in:
parent
a56f3c665e
commit
b586be515c
@ -634,6 +634,7 @@
|
||||
@ stdcall GetStringTypeW(long wstr long ptr)
|
||||
@ stdcall GetSystemDefaultLCID()
|
||||
@ stdcall GetSystemDefaultLangID()
|
||||
@ stdcall GetSystemDefaultLocaleName(ptr long)
|
||||
@ stdcall GetSystemDefaultUILanguage()
|
||||
@ stdcall GetSystemDEPPolicy()
|
||||
@ stdcall GetSystemDirectoryA(ptr long)
|
||||
|
@ -931,6 +931,14 @@ LCID WINAPI GetSystemDefaultLCID(void)
|
||||
return lcid;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetSystemDefaultLocaleName (KERNEL32.@)
|
||||
*/
|
||||
INT WINAPI GetSystemDefaultLocaleName(LPWSTR localename, INT len)
|
||||
{
|
||||
LCID lcid = GetSystemDefaultLCID();
|
||||
return LCIDToLocaleName(lcid, localename, len, 0);
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* GetUserDefaultUILanguage (KERNEL32.@)
|
||||
|
Loading…
Reference in New Issue
Block a user