1 #define WIN32_LEAN_AND_MEAN 2 #define STRICT 3 4 #include <windows.h> 5 6 extern "C" 7 { 8 #include <idndl.h> 9 } 10 11 int 12 WINAPI DownlevelGetLocaleScripts(LPCWSTR lpLocaleName,LPWSTR lpScripts,int cchScripts)13DownlevelGetLocaleScripts 14 ( 15 LPCWSTR lpLocaleName, 16 LPWSTR lpScripts, 17 int cchScripts 18 ) 19 { 20 return GetLocaleInfoEx(lpLocaleName, LOCALE_SSCRIPTS, lpScripts, cchScripts); 21 } 22 23 // EOF 24