GetLocaleInfoA method
Implementation
int GetLocaleInfoA(
int Locale,
int LCType,
ffi.Pointer<ffi.Int8> lpLCData,
int cchData,
) {
return (_GetLocaleInfoA ??=
_dylib.lookupFunction<_c_GetLocaleInfoA, _dart_GetLocaleInfoA>(
'GetLocaleInfoA'))(
Locale,
LCType,
lpLCData,
cchData,
);
}