|
Size: 1254
Comment: minor change
|
Size: 1311
Comment: add 'draft' note
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| ||<tablewidth="100%" style="color: #FF0000;" :> DRAFT|| |
DRAFT |
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 |
