FormatMessageA method
Implementation
int FormatMessageA(
int dwFlags,
ffi.Pointer<ffi.Void> lpSource,
int dwMessageId,
int dwLanguageId,
ffi.Pointer<ffi.Int8> lpBuffer,
int nSize,
ffi.Pointer<ffi.Pointer<ffi.Int8>> Arguments,
) {
return (_FormatMessageA ??=
_dylib.lookupFunction<_c_FormatMessageA, _dart_FormatMessageA>(
'FormatMessageA'))(
dwFlags,
lpSource,
dwMessageId,
dwLanguageId,
lpBuffer,
nSize,
Arguments,
);
}