You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
netsurf/frontends/kolibrios/clipboard_table.h

21 lines
506 B

/* ------------------------------ */
/* Part about GUI CLIPBOARD table. Will contain all functions required as well. */
/* ------------------------------ */
void kolibri_get_clipboard_contents(char **buffer, size_t *length)
{
}
void kolibri_set_clipboard_contents(const char *buffer, size_t length, nsclipboard_styles styles[], int n_styles)
{
}
static struct gui_clipboard_table kolibri_clipboard_table = {
.get = kolibri_get_clipboard_contents,
.set = kolibri_set_clipboard_contents,
};