table of contents
other versions
- trixie 3.2.10+ds-1
 - testing 3.2.26+ds-1
 - unstable 3.2.26+ds-2
 - experimental 3.3.2+git20251103~dc5b136+ds-1
 
| SDL_JoyHatEvent(3type) | SDL3 DATATYPES | SDL_JoyHatEvent(3type) | 
NAME¶
SDL_JoyHatEvent - Joystick hat position change event structure (event.jhat.*)
HEADER FILE¶
Defined in SDL3/SDL_events.h
SYNOPSIS¶
#include "SDL3/SDL.h"
typedef struct SDL_JoyHatEvent
{
    SDL_EventType type; /**< SDL_EVENT_JOYSTICK_HAT_MOTION */
    Uint32 reserved;
    Uint64 timestamp;   /**< In nanoseconds, populated using SDL_GetTicksNS() */
    SDL_JoystickID which; /**< The joystick instance id */
    Uint8 hat;          /**< The joystick hat index */
    Uint8 value;        /**< The hat position value.
                         *    SDL_HAT_LEFTUP SDL_HAT_UP SDL_HAT_RIGHTUP
                         *    SDL_HAT_LEFT SDL_HAT_CENTERED SDL_HAT_RIGHT
                         *    SDL_HAT_LEFTDOWN SDL_HAT_DOWN SDL_HAT_RIGHTDOWN
                         *
                         *   Note that zero means the POV is centered.
                         */
    Uint8 padding1;
    Uint8 padding2;
} SDL_JoyHatEvent;
AVAILABILITY¶
This struct is available since SDL 3.2.0.
| SDL 3.2.10 | Simple Directmedia Layer |