GetCurrencyFormatW method

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

Implementation

int GetCurrencyFormatW(
  int Locale,
  int dwFlags,
  ffi.Pointer<ffi.Uint16> lpValue,
  ffi.Pointer<CURRENCYFMTW> lpFormat,
  ffi.Pointer<ffi.Uint16> lpCurrencyStr,
  int cchCurrency,
) {
  return _GetCurrencyFormatW(
    Locale,
    dwFlags,
    lpValue,
    lpFormat,
    lpCurrencyStr,
    cchCurrency,
  );
}