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(
    lpLocaleName,
    LCType,
    lpLCData,
    cchData,
  );
}