MessageBoxExW method
Implementation
int MessageBoxExW(
ffi.Pointer<HWND__> hWnd,
ffi.Pointer<ffi.Uint16> lpText,
ffi.Pointer<ffi.Uint16> lpCaption,
int uType,
int wLanguageId,
) {
return (_MessageBoxExW ??=
_dylib.lookupFunction<_c_MessageBoxExW, _dart_MessageBoxExW>(
'MessageBoxExW'))(
hWnd,
lpText,
lpCaption,
uType,
wLanguageId,
);
}