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_GetNumJoystickBalls - Get the number of trackballs on a joystick.

Availability

       This function is available since SDL 3.2.0.

Description

       Joystick  trackballs  have  only  relative  motion  events associated with them and their state cannot be
       polled.

       Most joysticks do not have trackballs.

Function Parameters

joystick
              an SDL_Joystick
               structure containing joystick information.

Header File

       Defined in SDL3/SDL_joystick.h

Name

       SDL_GetNumJoystickBalls - Get the number of trackballs on a joystick.

Return Value

       Returns the number of trackballs on success or -1 on failure; call

       SDL_GetError () for more information.

See Also

(3), SDL_GetJoystickBall(3), (3), SDL_GetNumJoystickAxes(3), (3), SDL_GetNumJoystickButtons(3),  (3),
       SDL_GetNumJoystickHats(3)

Simple Directmedia Layer                           SDL 3.2.10                         SDL_GetNumJoystickBalls(3)

Synopsis

#include"SDL3/SDL.h"intSDL_GetNumJoystickBalls(SDL_Joystick*joystick);

See Also