mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
24 lines
291 B
C++
24 lines
291 B
C++
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#define STRICT
|
||
|
|
||
|
#include <windows.h>
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
#include <idndl.h>
|
||
|
}
|
||
|
|
||
|
int
|
||
|
WINAPI
|
||
|
DownlevelGetLocaleScripts
|
||
|
(
|
||
|
LPCWSTR lpLocaleName,
|
||
|
LPWSTR lpScripts,
|
||
|
int cchScripts
|
||
|
)
|
||
|
{
|
||
|
return GetLocaleInfoEx(lpLocaleName, LOCALE_SSCRIPTS, lpScripts, cchScripts);
|
||
|
}
|
||
|
|
||
|
// EOF
|