mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 04:15:30 +00:00
26 lines
540 B
C
26 lines
540 B
C
|
/* selectiondata.c : Glue to access fields of GtkSelectionData
|
||
|
*
|
||
|
* Author: Mike Kestner <mkestner@speakeasy.net>
|
||
|
*
|
||
|
* <c> 2003 Novell, Inc.
|
||
|
*/
|
||
|
|
||
|
#include <gtk/gtkwidget.h>
|
||
|
#include <gtk/gtkselection.h>
|
||
|
|
||
|
gint gtksharp_gtk_selection_data_get_length (GtkSelectionData *data);
|
||
|
gint gtksharp_gtk_selection_data_get_format (GtkSelectionData *data);
|
||
|
|
||
|
gint
|
||
|
gtksharp_gtk_selection_data_get_length (GtkSelectionData *data)
|
||
|
{
|
||
|
return data->length;
|
||
|
}
|
||
|
|
||
|
gint
|
||
|
gtksharp_gtk_selection_data_get_format (GtkSelectionData *data)
|
||
|
{
|
||
|
return data->format;
|
||
|
}
|
||
|
|