|
Size: 1169
Comment: update content (w/ Sam)
|
Size: 1512
Comment: update content - 9/27 changeset 4900
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 11: | Line 11: |
| ||SDL_version||'''version'''||an [[SDL_version]] structure that contains the current SDL version|| ||SDL_SYSWM_TYPE||'''subsystem'''||the windowing system type; see [[#Remarks|Remarks]] for details|| ||union||'''msg'''||the type of message ''-or'' ^the message to display^|| <<Color2(green,Below is old content temporarily here for reference.)>> |
|
| Line 30: | Line 35: |
| <<Include(SDL_SysWMinfo, , , from="of SDL_SYSWM_TYPE.", to="== Related Functions ==")>> | <<Include(SDL_SYSWM_TYPE, , , from="== Values ==", to="== Code Examples ==")>> |
DRAFT |
SDL_SysWMmsg
A structure that contains system-dependent window manager messages.
Contents
Data Fields
SDL_version |
version |
an SDL_version structure that contains the current SDL version |
SDL_SYSWM_TYPE |
subsystem |
the windowing system type; see Remarks for details |
union |
msg |
the type of message -or the message to display |
green
For Windows |
||
SDL_version |
version |
an SDL_version structure that contains the current SDL version |
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 |
an SDL_version structure that contains the current SDL version |
SDL_SYSWM_TYPE |
subsystem |
the windowing system type; see Remarks for details |
XEvent |
event.xevent |
the native x11 event structure |
Code Examples
You can add your code example here
Remarks
SDL_SYSWM_TYPE may be one of the following:
SDL_SYSWM_UNKNOWN |
|
SDL_SYSWM_WINDOWS |
Microsoft Windows |
SDL_SYSWM_X11 |
X Window System |
SDL_SYSWM_DIRECTFB |
|
SDL_SYSWM_COCOA |
Apple Mac OS X |
SDL_SYSWM_UIKIT |
Apple iOS |
SDL_SYSWM_WAYLAND |
Wayland (>= SDL 2.0.2) |
SDL_SYSWM_MIR |
Mir (>= SDL 2.0.2) |
SDL_SYSWM_WINRT |
WinRT (>= SDL 2.0.3) |
SDL_SYSWM_ANDROID |
Android (>= SDL 2.0.4) |
SDL_SYSWM_VIVANTE |
Vivante (>= SDL 2.0.5) |
