GetLocaleInfoEx method

int GetLocaleInfoEx(
  1. Pointer<Uint16> lpLocaleName,
  2. int LCType,
  3. Pointer<Uint16> lpLCData,
  4. int cchData,
)

Implementation

int GetLocaleInfoEx(
  ffi.Pointer<ffi.Uint16> lpLocaleName,
  int LCType,
  ffi.Pointer<ffi.Uint16> lpLCData,
  int cchData,
) {
  return (_GetLocaleInfoEx ??=
      _dylib.lookupFunction<_c_GetLocaleInfoEx, _dart_GetLocaleInfoEx>(
          'GetLocaleInfoEx'))(
    lpLocaleName,
    LCType,
    lpLCData,
    cchData,
  );
}