mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 05:45:58 +00:00
31 lines
612 B
C#
31 lines
612 B
C#
|
// This file was generated by the Gtk# code generator.
|
||
|
// Any changes made will be lost if regenerated.
|
||
|
|
||
|
namespace Gst {
|
||
|
|
||
|
using System;
|
||
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
#region Autogenerated code
|
||
|
[GLib.GType (typeof (Gst.RankGType))]
|
||
|
public enum Rank {
|
||
|
|
||
|
None = 0,
|
||
|
Marginal = 64,
|
||
|
Secondary = 128,
|
||
|
Primary = 256,
|
||
|
}
|
||
|
|
||
|
internal class RankGType {
|
||
|
[DllImport ("libgstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
||
|
static extern IntPtr gst_rank_get_type ();
|
||
|
|
||
|
public static GLib.GType GType {
|
||
|
get {
|
||
|
return new GLib.GType (gst_rank_get_type ());
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#endregion
|
||
|
}
|