GetCurrencyFormatA method

int GetCurrencyFormatA(
  1. int Locale,
  2. int dwFlags,
  3. Pointer<Int8> lpValue,
  4. Pointer<CURRENCYFMTA> lpFormat,
  5. Pointer<Int8> lpCurrencyStr,
  6. int cchCurrency,
)

Implementation

int GetCurrencyFormatA(
  int Locale,
  int dwFlags,
  ffi.Pointer<ffi.Int8> lpValue,
  ffi.Pointer<CURRENCYFMTA> lpFormat,
  ffi.Pointer<ffi.Int8> lpCurrencyStr,
  int cchCurrency,
) {
  return _GetCurrencyFormatA(
    Locale,
    dwFlags,
    lpValue,
    lpFormat,
    lpCurrencyStr,
    cchCurrency,
  );
}