GetMessageW method

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

Implementation

int GetMessageW(
  ffi.Pointer<MSG> lpMsg,
  ffi.Pointer<HWND__> hWnd,
  int wMsgFilterMin,
  int wMsgFilterMax,
) {
  return _GetMessageW(
    lpMsg,
    hWnd,
    wMsgFilterMin,
    wMsgFilterMax,
  );
}