GetMessageW method

int GetMessageW(
  1. Pointer<LPMSG> lpMsg,
  2. Pointer<HWND__> hWnd,
  3. int wMsgFilterMin,
  4. int wMsgFilterMax,
)

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,
  );
}