|
Size: 1316
Comment: update content (w/ Sam); remove 'draft' note
|
Size: 1256
Comment: update content (w/ Sam)
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| ||<tablewidth="100%" style="color: #FF0000;" :> DRAFT|| | |
| Line 29: | Line 28: |
| This structure is filled in by [[SDL_GetWindowWMInfo]](). | This structure is filled in by [[SDL_GetWindowWMInfo]](). |
| Line 31: | Line 30: |
| 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|| |
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|| |
SDL_SysWMinfo
A structure that contains system-dependent information about a window.
Data Fields
For Windows |
||
SDL_version |
version |
the version field you fill in before you call SDL_GetWindowWMInfo() |
HWND |
window |
the Win32 display window |
For X11 window management systems (Unix) |
||
SDL_version |
version |
the version field 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 |
