GetCurrencyFormatEx method

int GetCurrencyFormatEx(
  1. Pointer<Uint16> lpLocaleName,
  2. int dwFlags,
  3. Pointer<Uint16> lpValue,
  4. Pointer<LPCURRENCYFMTW> lpFormat,
  5. Pointer<Uint16> lpCurrencyStr,
  6. int cchCurrency,
)

Implementation

int GetCurrencyFormatEx(
  ffi.Pointer<ffi.Uint16> lpLocaleName,
  int dwFlags,
  ffi.Pointer<ffi.Uint16> lpValue,
  ffi.Pointer<LPCURRENCYFMTW> lpFormat,
  ffi.Pointer<ffi.Uint16> lpCurrencyStr,
  int cchCurrency,
) {
  return (_GetCurrencyFormatEx ??= _dylib.lookupFunction<
      _c_GetCurrencyFormatEx,
      _dart_GetCurrencyFormatEx>('GetCurrencyFormatEx'))(
    lpLocaleName,
    dwFlags,
    lpValue,
    lpFormat,
    lpCurrencyStr,
    cchCurrency,
  );
}