GetMessageW method
Implementation
int GetMessageW(
ffi.Pointer<LPMSG> lpMsg,
ffi.Pointer<HWND__> hWnd,
int wMsgFilterMin,
int wMsgFilterMax,
) {
return (_GetMessageW ??= _dylib
.lookupFunction<_c_GetMessageW, _dart_GetMessageW>('GetMessageW'))(
lpMsg,
hWnd,
wMsgFilterMin,
wMsgFilterMax,
);
}