mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 01:25:30 +00:00
30e653825c
weeks. I'll be posting an update to gtk-sharp-list in a bit to describe my latest psychosis. svn path=/trunk/gtk-sharp/; revision=1797
31 lines
552 B
Plaintext
31 lines
552 B
Plaintext
(define-struct Event
|
|
(in-module "Gdk")
|
|
(c-name "GdkEvent")
|
|
(fields
|
|
'("GdkEventType" "type")
|
|
)
|
|
)
|
|
|
|
(define-struct AccelEntry
|
|
(in-module "Gtk")
|
|
(c-name "GtkAccelEntry")
|
|
(fields
|
|
'("GtkAccelGroup*" "accel_group")
|
|
'("guint" "accelerator_key")
|
|
'("GdkModifierType" "accelerator_mods")
|
|
'("GtkAccelFlags" "accel_flags")
|
|
'("GObject*" "object")
|
|
'("guint" "signal_id")
|
|
)
|
|
)
|
|
|
|
(define-struct TargetList
|
|
(in-module "Gtk")
|
|
(c-name "GtkTargetList")
|
|
(fields
|
|
'("GList*" "target_list")
|
|
'("guint" "ref_count")
|
|
)
|
|
)
|
|
|