Retrieve the list of mime types available in the clipboard.
Defined in <SDL3/SDL_clipboard.h>
char ** SDL_GetClipboardMimeTypes(size_t *num_mime_types);
size_t * | num_mime_types | a pointer filled with the number of mime types, may be NULL. |
(char **) Returns a null terminated array of strings with mime types, or NULL on failure; call SDL_GetError() for more information. This should be freed with SDL_free() when it is no longer needed.
You may only call this function from the main thread.
This function is available since SDL 3.1.3.