Ryujinx-GtkSharp/glib/Source.cs

24 lines
422 B
C#
Raw Normal View History

// 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 {
private Source () {}
[DllImport("libglib-2.0-0.dll")]
static extern bool g_source_remove (uint tag);
public static bool Remove (uint tag)
{
return g_source_remove (tag);
}
}
}