Mercurial > sdl-ios-xcode
comparison include/SDL_video.h @ 1720:a1ebb17f9c52 SDL-1.3
Cleaned up a bunch of warnings, started adding Win32 event support
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 30 Jun 2006 05:42:49 +0000 |
parents | 5b9f50c957ed |
children | 5daa04d862f1 |
comparison
equal
deleted
inserted
replaced
1719:5b9f50c957ed | 1720:a1ebb17f9c52 |
---|---|
714 * | 714 * |
715 * \sa SDL_GrabMode | 715 * \sa SDL_GrabMode |
716 * \sa SDL_SetWindowGrab() | 716 * \sa SDL_SetWindowGrab() |
717 */ | 717 */ |
718 extern DECLSPEC int SDLCALL SDL_GetWindowGrab(SDL_WindowID windowID); | 718 extern DECLSPEC int SDLCALL SDL_GetWindowGrab(SDL_WindowID windowID); |
719 | |
720 /** | |
721 * \fn SDL_bool SDL_GetWindowWMInfo(SDL_WindowID windowID, struct SDL_SysWMinfo * info) | |
722 * | |
723 * \brief Get driver specific information about a window. | |
724 * | |
725 * \note Include SDL_syswm.h for the declaration of SDL_SysWMinfo. | |
726 */ | |
727 struct SDL_SysWMinfo; | |
728 extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowWMInfo(SDL_WindowID windowID, | |
729 struct SDL_SysWMinfo | |
730 *info); | |
719 | 731 |
720 /** | 732 /** |
721 * \fn void SDL_DestroyWindow(SDL_WindowID windowID) | 733 * \fn void SDL_DestroyWindow(SDL_WindowID windowID) |
722 * | 734 * |
723 * \brief Destroy a window. | 735 * \brief Destroy a window. |