SetLocaleInfoW method

int SetLocaleInfoW(
  1. int Locale,
  2. int LCType,
  3. Pointer<Uint16> lpLCData
)

Implementation

int SetLocaleInfoW(
  int Locale,
  int LCType,
  ffi.Pointer<ffi.Uint16> lpLCData,
) {
  return (_SetLocaleInfoW ??=
      _dylib.lookupFunction<_c_SetLocaleInfoW, _dart_SetLocaleInfoW>(
          'SetLocaleInfoW'))(
    Locale,
    LCType,
    lpLCData,
  );
}