Tao.Sdl SDK Documentation |
|
Sdl.SDL_GetWMInfo Method (SDL_SysWMinfo_Windows)
Gives you custom hooks into the window manager information.
Parameters
-
info
- IntPtr to SDL_SysWMinfo struct
Return Value
It fills the structure pointed to by 'info' with custom information and returns 1 if the function is implemented. If it's not implemented, or the version member of the 'info' structure is invalid, it returns 0.
Remarks
This function gives you custom hooks into the window manager information. It fills the structure pointed to by 'info' with custom information and returns 1 if the function is implemented. If it's not implemented, or the version member of the 'info' structure is invalid, it returns 0. You typically use this function like this: SDL_SysWMInfo info; SDL_VERSION(&info.version); if ( SDL_GetWMInfo(&info) ) { ... }
Binds to C-function call in SDL_rwops.h:
extern DECLSPEC int SDLCALL SDL_GetWMInfo(SDL_SysWMinfo *info)
See Also
Sdl Class | Tao.Sdl Namespace | Sdl.SDL_GetWMInfo Overload List