Back to development
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / PadLinkCheck.cs
1 // This file was generated by the Gtk# code generator.
2 // Any changes made will be lost if regenerated.
3
4 namespace Gst {
5
6         using System;
7         using System.Runtime.InteropServices;
8
9 #region Autogenerated code
10         [Flags]
11         [GLib.GType (typeof (Gst.PadLinkCheckGType))]
12         public enum PadLinkCheck : uint {
13
14                 Nothing = 0,
15                 Hierarchy = 1,
16                 TemplateCaps = 2,
17                 Caps = 4,
18                 Default = 5,
19                 NoReconfigure = 8,
20         }
21
22         internal class PadLinkCheckGType {
23                 [DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
24                 static extern IntPtr gst_pad_link_check_get_type ();
25
26                 public static GLib.GType GType {
27                         get {
28                                 return new GLib.GType (gst_pad_link_check_get_type ());
29                         }
30                 }
31         }
32 #endregion
33 }