We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0a3e70 commit 6f5798cCopy full SHA for 6f5798c
units/sdlsyswm.inc
@@ -89,13 +89,14 @@ Type
89
{$IFDEF SDL_VIDEO_DRIVER_WINDOWS}
90
__SYSWM_WINDOWS = record
91
hwnd: HWND; {**< The window for the message }
92
- msg: uInt; {**< The type of message *}
+ msg: UINT; {**< The type of message *}
93
wParam: WPARAM; {**< WORD message parameter *}
94
- lParam: LPARAM; {**< WORD message parameter *}
+ lParam: LPARAM; {**< LONG message parameter *}
95
end;
96
__WMINFO_WINDOWS = record
97
- window: HWND; {**< The window handle *}
98
- hdc: HDC; {**< The window device context *}
+ window: HWND; {**< The window handle *}
+ hdc: HDC; {**< The window device context *}
99
+ hinstance: HINST; {**< The instance handle *}
100
101
{$ENDIF}
102
0 commit comments