GetLocaleInfoW method

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

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