|
Size: 1311
Comment: add 'draft' note
|
Size: 1335
Comment: update content (w/ Sam)
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 12: | Line 12: |
| ||SDL_version||'''version'''||the version field you fill in before you call [[SDL_GetWindowWMInfo]]()|| | ||SDL_version||'''version'''||the [[SDL_Version]] structure you fill in before you call [[SDL_GetWindowWMInfo]]()|| |
| Line 15: | Line 15: |
| ||SDL_version||'''version'''||the version field you fill in before you call [[SDL_GetWindowWMInfo]]()|| | ||SDL_version||'''version'''||the [[SDL_Version]] structure you fill in before you call [[SDL_GetWindowWMInfo]]()|| |
DRAFT |
SDL_SysWMinfo
A structure that contains system-dependent information about a window.
Data Fields
For Windows |
||
SDL_version |
version |
the SDL_Version structure you fill in before you call SDL_GetWindowWMInfo() |
HWND |
window |
the Win32 display window |
For X11 window management systems (Unix) |
||
SDL_version |
version |
the SDL_Version structure you fill in before you call SDL_GetWindowWMInfo() |
SDL_SYSWM_TYPE |
subsystem |
the windowing system type; see Remarks for details |
Display |
info.x11.display |
the X11 display |
Window |
info.x11.window |
the X11 window |
Code Examples
You can add your code example here
Remarks
For X11 window management systems (Unix)
This structure is filled in by SDL_GetWindowWMInfo().
When SDL_GetWindowWMInfo() returns the structure holds information specific to the low level windowing system being used, which is one of SDL_SYSWM_TYPE.
SDL_SYSWM_X11 |
the X11 windowing system |
