GetCurrencyFormatW method

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

Implementation

int GetCurrencyFormatW(
  int Locale,
  int dwFlags,
  ffi.Pointer<ffi.Uint16> lpValue,
  ffi.Pointer<LPCURRENCYFMTW> lpFormat,
  ffi.Pointer<ffi.Uint16> lpCurrencyStr,
  int cchCurrency,
) {
  return (_GetCurrencyFormatW ??=
      _dylib.lookupFunction<_c_GetCurrencyFormatW, _dart_GetCurrencyFormatW>(
          'GetCurrencyFormatW'))(
    Locale,
    dwFlags,
    lpValue,
    lpFormat,
    lpCurrencyStr,
    cchCurrency,
  );
}