Joystick axis motion event structure (event.jaxis.*)
Defined in <SDL3/SDL_events.h>
typedef struct SDL_JoyAxisEvent
{/**< SDL_EVENT_JOYSTICK_AXIS_MOTION */
SDL_EventType type;
Uint32 reserved;/**< In nanoseconds, populated using SDL_GetTicksNS() */
Uint64 timestamp; /**< The joystick instance id */
SDL_JoystickID which; /**< The joystick axis index */
Uint8 axis;
Uint8 padding1;
Uint8 padding2;
Uint8 padding3;/**< The axis value (range: -32768 to 32767) */
Sint16 value;
Uint16 padding4; } SDL_JoyAxisEvent;
This struct is available since SDL 3.1.3.