SDL_GrabMode
Name
SDL_GrabMode -- The enum type which designates the grab mode.
Structure Definition
typedef enum {
SDL_GRAB_QUERY,
SDL_GRAB_OFF,
SDL_GRAB_ON
} SDL_GrabMode;
Enum Keys
SDL_GRAB_QUERY |
Returns current grab mode. No change is made. |
SDL_GRAB_OFF |
Grabbing turned off. |
SDL_GRAB_ON |
Grabbing turned on. |
Description
This enum is used to set or query input grabbing mode with SDL_WM_GrabInput. For more information on input grabbing refer to this function.
