Offer clipboard data to the OS
int SDL_SetClipboardData(SDL_ClipboardDataCallback callback, size_t mime_count,
const char **mime_types, void *userdata);
callback | A function pointer to the function that provides the clipboard data |
mime_count | The number of mime-types in the mime_types list |
mime_types | A list of mime-types that are being offered |
userdata | An opaque pointer that will be forwarded to the callback |
Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.
Tell the operating system that the application is offering clipboard data for each of the proivded mime-types. Once another application requests the data the callback function will be called allowing it to generate and respond with the data for the requested mime-type.
The userdata submitted to this function needs to be freed manually. The following scenarios need to be handled:
This function is available since SDL 3.0.0.