|
⇤ ← Revision 1 as of 2010-01-17 07:11:19
Size: 925
Comment: create page, add content
|
Size: 921
Comment: Update WindowID > Window*
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 12: | Line 12: |
| SDL_bool SDL_GetWindowWMInfo(SDL_WindowID windowID, | SDL_bool SDL_GetWindowWMInfo(SDL_Window* window, |
| Line 17: | Line 17: |
| ||'''windowID'''||the type used to identify the window|| | ||'''window'''||the type used to identify the window|| |
DRAFT |
SDL_GetWindowWMInfo
Use this function to get driver specific information about a window.
Contents
Syntax
SDL_bool SDL_GetWindowWMInfo(SDL_Window* window,
struct SDL_SysWMinfo* info)
Function Parameters
window |
the type used to identify the window |
info |
a pointer to the SDL_SysWMinfo structure to query |
Return Value
SDL_TRUE, or SDL_FALSE if the information could not be retrieved; call SDL_GetError() for more information.
Code Examples
You can add your code example here
Remarks
Include SDL_syswm.h for the declaration of SDL_SysWMinfo.
