|
Size: 740
Comment: Update WindowID > Window*
|
← Revision 7 as of 2011-03-13 21:21:13 ⇥
Size: 630
Comment: update content - 3/13 e20c93bc9122 (2/27 424f036f7c68)
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 2: | Line 2: |
| #pragma disable-camelcase ||<tablewidth="100%" style="color: #FF0000;" :> DRAFT|| |
#pragma camelcase off |
| Line 6: | Line 5: |
| Use this function to get the window's input grab mode. | Use this function to get a window's input grab mode. |
| Line 12: | Line 11: |
| int SDL_GetWindowGrab(SDL_Window* window) | SDL_bool SDL_GetWindowGrab(SDL_Window* window) |
| Line 16: | Line 15: |
| ||'''window'''||the type used to identify the window|| | ||'''window'''||the window to query|| |
| Line 19: | Line 18: |
| Returns 1 if input is grabbed, and 0 otherwise; call [[SDL_GetError]]() for more information. | Returns SDL_TRUE if input is grabbed, SDL_FALSE otherwise. |
SDL_GetWindowGrab
Use this function to get a window's input grab mode.
Contents
Syntax
SDL_bool SDL_GetWindowGrab(SDL_Window* window)
Function Parameters
window |
the window to query |
Return Value
Returns SDL_TRUE if input is grabbed, SDL_FALSE otherwise.
Code Examples
You can add your code example here
Remarks
You can add useful comments here
