Group: National Language Support - Library: kernel32
int GetSystemDefaultLocaleName(
_Out_ LPWSTR lpLocaleName,
_In_ int cchLocaleName
);
DECLARE INTEGER GetSystemDefaultLocaleName;
IN kernel32;
STRING @lpLocaleName,;
INTEGER cchLocaleName
lpLocaleName [out] Pointer to a buffer in which this function retrieves the locale name.
cchLocaleName [in] Size, in characters, of the output buffer indicated by lpLocaleName.
Returns a value greater than 0 that indicates the length of the locale name, including the terminating null character, if successful.
See also: GetUserDefaultLocaleName, GetSystemDefaultLCID.
Home