GetLocaleInfoA method

int GetLocaleInfoA(
  1. int Locale,
  2. int LCType,
  3. Pointer<Int8> lpLCData,
  4. int cchData,
)

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,
  );
}