f1e095a87b
* glib/Log.cs: Make LogLevelFlags CLS compliant. * glib/SignalCallback.cs: Set the constructor protection level to protected, since it can not be instantiate.d * glib/Marshaller.cs: Do not allow instances of this class as it only exposes static methods. * glib/Source.cs, glib/FileUtils.cs, glib/Timeout.cs, glib/Thread.cs, glib/Markup.cs, glib/TypeConverter.cs: Ditto. svn path=/trunk/gtk-sharp/; revision=20573
23 lines
422 B
C#
23 lines
422 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 {
|
|
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);
|
|
}
|
|
}
|
|
}
|