GetCurrencyFormatA method

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

Implementation

int GetCurrencyFormatA(
  int Locale,
  int dwFlags,
  ffi.Pointer<ffi.Int8> lpValue,
  ffi.Pointer<LPCURRENCYFMTA> lpFormat,
  ffi.Pointer<ffi.Int8> lpCurrencyStr,
  int cchCurrency,
) {
  return (_GetCurrencyFormatA ??=
      _dylib.lookupFunction<_c_GetCurrencyFormatA, _dart_GetCurrencyFormatA>(
          'GetCurrencyFormatA'))(
    Locale,
    dwFlags,
    lpValue,
    lpFormat,
    lpCurrencyStr,
    cchCurrency,
  );
}