1SDL_GetMouseState(3)           SDL API Reference          SDL_GetMouseState(3)
2
3
4

NAME

6       SDL_GetMouseState - Retrieve the current state of the mouse
7

SYNOPSIS

9       #include "SDL.h"
10
11       Uint8 SDL_GetMouseState(int *x, int *y);
12

DESCRIPTION

14       The  current button state is returned as a button bitmask, which can be
15       tested using the SDL_BUTTON(X) macros, and x and y are set to the  cur‐
16       rent mouse cursor position. You can pass NULL for either x or y.
17

EXAMPLE

19       SDL_PumpEvents();
20       if(SDL_GetMouseState(NULL, NULL)&SDL_BUTTON(1))
21         printf("Mouse Button 1(left) is pressed.
22       ");
23

SEE ALSO

25       SDL_GetRelativeMouseState, SDL_PumpEvents
26
27
28
29SDL                         Tue 11 Sep 2001, 22:59        SDL_GetMouseState(3)
Impressum