FormatMessageW method
Implementation
int FormatMessageW(
int dwFlags,
ffi.Pointer<ffi.Void> lpSource,
int dwMessageId,
int dwLanguageId,
ffi.Pointer<ffi.Uint16> lpBuffer,
int nSize,
ffi.Pointer<ffi.Pointer<ffi.Int8>> Arguments,
) {
return (_FormatMessageW ??=
_dylib.lookupFunction<_c_FormatMessageW, _dart_FormatMessageW>(
'FormatMessageW'))(
dwFlags,
lpSource,
dwMessageId,
dwLanguageId,
lpBuffer,
nSize,
Arguments,
);
}