GetLocaleInfoEx function kernel32
Retrieves information about a locale specified by name.
int GetLocaleInfoEx(
LPCWSTR lpLocaleName,
LCTYPE LCType,
LPWSTR lpLCData,
int cchData
);
Implementation
int GetLocaleInfoEx(Pointer<Utf16> lpLocaleName, int LCType,
Pointer<Utf16> lpLCData, int cchData) =>
_GetLocaleInfoEx(lpLocaleName, LCType, lpLCData, cchData);