summaryrefslogtreecommitdiff
path: root/frontends/kolibrios/clipboard_table.h
blob: 93f370481b3c4e70dd0ef257af6b5656c0b8a1e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ------------------------------ */
/* 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,
    };