DispatchMessage function user32

int DispatchMessage(
  1. Pointer<MSG> lpMsg
)

Dispatches a message to a window procedure. It is typically used to dispatch a message retrieved by the GetMessage function.

LRESULT DispatchMessageW(
  const MSG *lpMsg
);

Implementation

int DispatchMessage(Pointer<MSG> lpMsg) => _DispatchMessage(lpMsg);