[][src]Function fermium::SDL_GetWindowWMInfo

pub unsafe extern "C" fn SDL_GetWindowWMInfo(
    window: *mut SDL_Window,
    info: *mut SDL_SysWMinfo
) -> Type

\brief This function allows access to driver-dependent window information.

\param window The window about which information is being requested \param info This structure must be initialized with the SDL version, and is then filled in with information about the given window.

\return SDL_TRUE if the function is implemented and the version member of the \c info struct is valid, SDL_FALSE otherwise.

You typically use this function like this: \code SDL_SysWMinfo info; SDL_VERSION(&info.version); if ( SDL_GetWindowWMInfo(window, &info) ) { ... } \endcode