Extended keyboard text editing event structure (event.editExt.*) when text would be truncated if stored in the text buffer SDL_TextEditingEvent
Defined in SDL_events.h
typedef struct SDL_TextEditingExtEvent
{/**< SDL_TEXTEDITING_EXT */
Uint32 type; /**< In milliseconds, populated using SDL_GetTicks() */
Uint32 timestamp; /**< The window with keyboard focus, if any */
Uint32 windowID; char* text; /**< The editing text, which should be freed with SDL_free(), and will not be NULL */
/**< The start cursor of selected editing text */
Sint32 start; /**< The length of selected editing text */
Sint32 length; } SDL_TextEditingExtEvent;