reactos/dll/nls/idndl/idndl.cpp
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

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