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
29 lines
546 B
C#
29 lines
546 B
C#
//
|
|
// Markup.cs: Wrapper for the Markup code in Glib
|
|
//
|
|
// Authors:
|
|
// Miguel de Icaza (miguel@ximian.com)
|
|
//
|
|
// (C) 2003 Ximian, Inc.
|
|
//
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace GLib {
|
|
|
|
|
|
public class Markup {
|
|
private Markup () {}
|
|
|
|
[DllImport("libglib-2.0-0.dll")]
|
|
static extern IntPtr g_markup_escape_text (string text, int len);
|
|
|
|
static public string EscapeText (string s)
|
|
{
|
|
if (s == null)
|
|
return "";
|
|
|
|
return GLibSharp.Marshaller.PtrToStringGFree (g_markup_escape_text (s, s.Length));
|
|
}
|
|
}
|
|
}
|