MSG STRUCT
(MS-Windows)
Defines the data needed for a MS-Windows
message.
MSG STRUCT hwnd DWORD ? message DWORD ? wParam DWORD ? lParam DWORD ? time DWORD ? pt POINT <> MSG ENDS |
| Member | Win Type | MASM Type | Description |
|---|---|---|---|
| hwnd | HWND | DWORD | Handle to the window whose window procedure receives the message. |
| message | UINT | DWORD | Specifies the message number. |
| wParam | WPARAM | DWORD | Additional information about the message (specific to the message number). |
| lParam | LPARAM | DWORD | Additional information about the message (specific to the message number). |
| time | DWORD | DWORD | Time when the message was posted. |
| pt | POINT | POINT | Specifies the cursor position when the message was posted. |
| Converted from CHM to HTML with chm2web Pro 2.85 (unicode) |