logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SDL_JoystickEventState - Enable/disable joystick event polling

Description

       This  function  is  used  to  enable or disable joystick event processing. With joystick event processing
       disabled you will  have  to  update  joystick  states  with  SDL_JoystickUpdate  and  read  the  joystick
       information manually. state is either SDL_QUERY, SDL_ENABLE or SDL_IGNORE.

              Note:

              Joystick event handling is prefered

Name

       SDL_JoystickEventState - Enable/disable joystick event polling

Return Value

       If state is SDL_QUERY then the current state is returned, otherwise the new processing state is returned.

See Also

SDLJoystickFunctions,  SDL_JoystickUpdate,  SDL_JoyAxisEvent,  SDL_JoyBallEvent,  SDL_JoyButtonEvent,
       SDL_JoyHatEvent

SDL                                          Tue 11 Sep 2001, 22:59                    SDL_JoystickEventState(3)

Synopsis

#include"SDL.h"intSDL_JoystickEventState(intstate);

See Also