GetLocaleInfoW method
Implementation
int GetLocaleInfoW(
int Locale,
int LCType,
ffi.Pointer<ffi.Uint16> lpLCData,
int cchData,
) {
return (_GetLocaleInfoW ??=
_dylib.lookupFunction<_c_GetLocaleInfoW, _dart_GetLocaleInfoW>(
'GetLocaleInfoW'))(
Locale,
LCType,
lpLCData,
cchData,
);
}