diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2021-04-09 16:42:56 +0400 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2021-04-09 21:20:13 +0400 |
commit | c83d09ba103c88f0690ad514c7786072fa0c3ca5 (patch) | |
tree | 8d72ce2d02dfc5f8e7c7b8b47978825216abb751 | |
parent | cce47d9410ba5dc4493dae8e1b5bcd608e09cf33 (diff) |
Add clipboard function array annotations
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
-rw-r--r-- | src/channel-main.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/channel-main.c b/src/channel-main.c index 060b70c..fcf6252 100644 --- a/src/channel-main.c +++ b/src/channel-main.c @@ -2883,7 +2883,7 @@ void spice_main_set_display(SpiceMainChannel *channel, int id, /** * spice_main_clipboard_grab: * @channel: a #SpiceMainChannel - * @types: an array of #VD_AGENT_CLIPBOARD types available in the clipboard + * @types: (transfer none)(array length=ntypes): an array of #VD_AGENT_CLIPBOARD types available in the clipboard * @ntypes: the number of @types * * Grab the guest clipboard, with #VD_AGENT_CLIPBOARD @types. @@ -2900,7 +2900,7 @@ void spice_main_clipboard_grab(SpiceMainChannel *channel, guint32 *types, int nt * spice_main_clipboard_selection_grab: * @channel: a #SpiceMainChannel * @selection: one of the clipboard #VD_AGENT_CLIPBOARD_SELECTION_* - * @types: an array of #VD_AGENT_CLIPBOARD types available in the clipboard + * @types: (transfer none)(array length=ntypes): an array of #VD_AGENT_CLIPBOARD types available in the clipboard * @ntypes: the number of @types * * Grab the guest clipboard, with #VD_AGENT_CLIPBOARD @types. @@ -2918,7 +2918,7 @@ void spice_main_clipboard_selection_grab(SpiceMainChannel *channel, guint select * spice_main_channel_clipboard_selection_grab: * @channel: a #SpiceMainChannel * @selection: one of the clipboard #VD_AGENT_CLIPBOARD_SELECTION_* - * @types: an array of #VD_AGENT_CLIPBOARD types available in the clipboard + * @types: (transfer none)(array length=ntypes): an array of #VD_AGENT_CLIPBOARD types available in the clipboard * @ntypes: the number of @types * * Grab the guest clipboard, with #VD_AGENT_CLIPBOARD @types. @@ -2993,7 +2993,7 @@ void spice_main_channel_clipboard_selection_release(SpiceMainChannel *channel, g * spice_main_clipboard_notify: * @channel: a #SpiceMainChannel * @type: a #VD_AGENT_CLIPBOARD type - * @data: clipboard data + * @data: (array length=size): clipboard data * @size: data length in bytes * * Send the clipboard data to the guest. @@ -3012,7 +3012,7 @@ void spice_main_clipboard_notify(SpiceMainChannel *channel, * @channel: a #SpiceMainChannel * @selection: one of the clipboard #VD_AGENT_CLIPBOARD_SELECTION_* * @type: a #VD_AGENT_CLIPBOARD type - * @data: clipboard data + * @data: (array length=size): clipboard data * @size: data length in bytes * * Send the clipboard data to the guest. @@ -3031,7 +3031,7 @@ void spice_main_clipboard_selection_notify(SpiceMainChannel *channel, guint sele * @channel: a #SpiceMainChannel * @selection: one of the clipboard #VD_AGENT_CLIPBOARD_SELECTION_* * @type: a #VD_AGENT_CLIPBOARD type - * @data: clipboard data + * @data: (array length=size): clipboard data * @size: data length in bytes * * Send the clipboard data to the guest. |