DRAFT |
SDL_SysWMmsg
A structure that contains system-dependent window manager messages -or- platform-specific windowing messages.
Data Fields
For Win32 window management systems (Windows) |
||
SDL_version |
version |
a field you fill in before you call a function |
HWND |
hwnd |
the window for the message |
UINT |
msg |
the type of message |
WPARAM |
wParam |
WORD message parameter |
LPARAM |
lParam |
LONG message parameter |
For X11 window management systems (Unix) |
||
SDL_version |
version |
a version field you fill in before you call a function |
SDL_SYSWM_TYPE |
subsystem |
the window manager type; see Remarks for details |
union ??? |
event |
a union containing XEvent |
XEvent ??? |
event.xevent |
the native x11 event structure |
Code Examples
You can add your code example here
Remarks
SDL_SYSWM_TYPE currently has only 1 value: SDL_SYSWM_X11
Related Structures
