mirror of
https://github.com/reactos/reactos.git
synced 2024-11-17 12:27:17 +00:00
23 lines
291 B
C++
23 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
|