[KERNEL32] SetThreadUILanguage(): Validate the parameter. Use LANGIDFROMLCID() macro. (#4301)

Both ReactOS and Win2k3 only support '0' for the parameter.
This commit is contained in:
Hermès Bélusca-Maïto 2022-01-21 18:01:29 +01:00
parent 3e44a5d71c
commit a94436b519
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -935,8 +935,19 @@ LANGID
WINAPI
SetThreadUILanguage(IN LANGID LangId)
{
#if (NTDDI_VERSION < NTDDI_LONGHORN)
/* We only support LangId == 0, for selecting a language
* identifier that best supports the NT Console. */
if (LangId != 0)
{
BaseSetLastNTError(STATUS_NOT_SUPPORTED);
return 0;
}
#endif
UNIMPLEMENTED;
return (LANGID)NtCurrentTeb()->CurrentLocale;
return LANGIDFROMLCID(NtCurrentTeb()->CurrentLocale);
}
/*