Ryujinx-GtkSharp/glib/IWrapper.cs
Mike Kestner 15432372a6 2002-08-22 Mike Kestner <mkestner@speakeasy.net>
* glib/IWrapper.cs : remove set_Handle
	* glib/Object.cs : ditto
	* glib/Opaque.cs : ditto

svn path=/trunk/gtk-sharp/; revision=6835
2002-08-21 00:22:24 +00:00

16 lines
236 B
C#

// IWrapper.cs - Common code for GInterfaces and GObjects
//
// Author: Rachel Hestilow <hesitlow@ximian.com>
//
// (c) 2002 Rachel Hestilow
namespace GLib
{
using System;
public interface IWrapper
{
IntPtr Handle { get; }
}
}