Function
GtkClipboardURIReceivedFunc
since: 2.14
Declaration
void
(* GtkClipboardURIReceivedFunc) (
GtkClipboard* clipboard,
gchar** uris,
gpointer data
)
Description [src]
A function to be called when the results of
gtk_clipboard_request_uris()
are received, or when the request fails.
Available since: 2.14
Parameters
clipboard
-
Type:
GtkClipboard
The
GtkClipboard
.The data is owned by the caller of the function. uris
-
Type: An array of
gchar*
The received URIs.
The array must be NULL
-terminated.The data is owned by the caller of the function. Each element is a NUL terminated UTF-8 string. data
-
Type:
gpointer
The
user_data
supplied to gtk_clipboard_request_uris().The argument can be NULL
.The data is owned by the caller of the function.