SDL_GetClipboardMimeTypes

Retrieve the list of mime types available in the clipboard.

extern (C) nothrow @nogc extern
char**
SDL_GetClipboardMimeTypes
()

Parameters

num_mime_types size_t*

a pointer filled with the number of mime types, may be NULL.

Return Value

Type: char**

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.

Threadsafety: This function should only be called on the main thread.

See Also

Meta