Scroll to navigation

SDL_AttachVirtualJoystick(3) SDL3 FUNCTIONS SDL_AttachVirtualJoystick(3)

NAME

SDL_AttachVirtualJoystick - Attach a new virtual joystick.

SYNOPSIS

#include "SDL3/SDL.h"
SDL_JoystickID SDL_AttachVirtualJoystick(SDL_JoystickType type,
                              int naxes,
                              int nbuttons,
                              int nhats);

FUNCTION PARAMETERS

type of joystick
number of axes
number of buttons
number of hats

RETURN VALUE

Returns the joystick instance ID, or 0 if an error occurred; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_AttachVirtualJoystickEx(3), SDL_DetachVirtualJoystick(3)

SDL 3.1.0 SDL