gstreamer/subprojects/gstreamer-sharp/ges/generated/GES/TextHAlign.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
635 B
C#
Raw Normal View History

2018-01-29 18:56:49 +00:00
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace GES {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
[GLib.GType (typeof (GES.TextHAlignGType))]
public enum TextHAlign {
Left = 0,
Center = 1,
Right = 2,
Position = 4,
Absolute = 5,
}
internal class TextHAlignGType {
[DllImport ("ges-1.0", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr ges_text_halign_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (ges_text_halign_get_type ());
}
}
}
#endregion
}