◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_WINMESSAGEMGR typedef struct _QMSG { /* qmsg */ HWND hwnd; USHORT msg; MPARAM mp1; MPARAM mp2; ULONG time; POINTL ptl; } QMSG; The QMSG structure contains information about a message. Field Description ──────────────────────────────────────────────────────────────────────────── hwnd Identifies the window handle. msg Specifies the message. mp1 Specifies the first message parameter. mp2 Specifies the second message parameter. time Specifies the time the message was generated. ptl Specifies the pointer position when the message was generated. See Also WinCallMsgFilter, WinDispatchMsg, WinGetMsg, WinPeekMsg ♦