Ryujinx-GtkSharp/glib/Source.cs
Duncan Mak f94df39a18 2002-10-19 Duncan Mak <duncan@ximian.com>
* glib/Source.cs: Added.

svn path=/trunk/gtk-sharp/; revision=8412
2002-10-19 23:18:59 +00:00

23 lines
390 B
C#

// GLib.Source.cs - Source class implementation
//
// Author: Duncan Mak <duncan@ximian.com>
//
// (c) 2002 Mike Kestner
namespace GLib {
using System;
using System.Runtime.InteropServices;
public class Source {
[DllImport("glib-2.0")]
static extern bool g_source_remove (uint tag);
public static bool Remove (uint tag)
{
return g_source_remove (tag);
}
}
}