Files
KioskApp/GtkSharp/Source/Libs/PangoSharp/Generated/Pango/Style.cs

31 lines
741 B
C#
Raw Normal View History

2024-09-15 22:40:48 +02:00
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Pango {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
[GLib.GType (typeof (Pango.StyleGType))]
public enum Style {
Normal,
Oblique,
Italic,
}
internal class StyleGType {
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
delegate IntPtr d_pango_style_get_type();
static d_pango_style_get_type pango_style_get_type = FuncLoader.LoadFunction<d_pango_style_get_type>(FuncLoader.GetProcAddress(GLibrary.Load(Library.Pango), "pango_style_get_type"));
public static GLib.GType GType {
get {
return new GLib.GType (pango_style_get_type ());
}
}
}
#endregion
}