Scroll to navigation

SDL_SetClipboardData(3) SDL3 FUNCTIONS SDL_SetClipboardData(3)

NAME

SDL_SetClipboardData - Offer clipboard data to the OS

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_SetClipboardData(SDL_ClipboardDataCallback callback, SDL_ClipboardCleanupCallback cleanup, void *userdata, const char **mime_types, size_t num_mime_types);

DESCRIPTION

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 size of text data does not include any terminator, and the text does not need to be null terminated (e.g. you can directly copy a portion of a document)

FUNCTION PARAMETERS

A function pointer to the function that provides the clipboard data
A function pointer to the function that cleans up the clipboard data
An opaque pointer that will be forwarded to the callbacks
A list of mime-types that are being offered
The number of mime-types in the mime_types list

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_ClearClipboardData(3), SDL_GetClipboardData(3), SDL_HasClipboardData(3)

SDL 3.1.0 SDL