mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 12:21:30 +00:00
32 lines
635 B
C#
32 lines
635 B
C#
|
// 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
|
||
|
}
|