An event triggered when the clipboard contents have changed (event.clipboard.*)
Defined in <SDL3/SDL_events.h>
typedef struct SDL_ClipboardEvent
{/**< SDL_EVENT_CLIPBOARD_UPDATE */
SDL_EventType type;
Uint32 reserved;/**< In nanoseconds, populated using SDL_GetTicksNS() */
Uint64 timestamp; bool owner; /**< are we owning the clipboard (internal update) */
/**< number of mime types */
Sint32 n_mime_types; const char **mime_types; /**< current mime types */
} SDL_ClipboardEvent;
This struct is available since SDL 3.1.3.