SDL_GetClipboardData

Get the data from clipboard for a given mime type.

The size of text data does not include the terminator, but the text is guaranteed to be null terminated.

extern (C) nothrow @nogc extern
void*
SDL_GetClipboardData
(
const(char)* mime_type
,
size_t* size
)

Parameters

mime_type const(char)*

the mime type to read from the clipboard.

size size_t*

a pointer filled in with the length of the returned data.

Return Value

Type: void*

the retrieved data buffer 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