Ryujinx-GtkSharp/gtk/Object.custom

18 lines
404 B
Plaintext
Raw Normal View History

// Gtk.Object.custom - Gtk Window class customizations
//
// Author: Mike Kestner <mkestner@speakeasy.net>
//
// (c) 2002 Mike Kestner
//
// This code is inserted after the automatically generated code.
[DllImport("gtksharpglue")]
static extern void gtksharp_object_unref_if_floating (IntPtr raw);
protected override void DisposeNative ()
{
gtksharp_object_unref_if_floating (Handle);
}