Back to development
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / PadFlags.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.PadFlagsGType))]
12         public enum PadFlags : uint {
13
14                 Blocked = 16,
15                 Flushing = 32,
16                 Eos = 64,
17                 Blocking = 128,
18                 NeedParent = 256,
19                 NeedReconfigure = 512,
20                 PendingEvents = 1024,
21                 FixedCaps = 2048,
22                 ProxyCaps = 4096,
23                 ProxyAllocation = 8192,
24                 ProxyScheduling = 16384,
25                 AcceptIntersect = 32768,
26                 AcceptTemplate = 65536,
27                 Last = 1048576,
28         }
29
30         internal class PadFlagsGType {
31                 [DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
32                 static extern IntPtr gst_pad_flags_get_type ();
33
34                 public static GLib.GType GType {
35                         get {
36                                 return new GLib.GType (gst_pad_flags_get_type ());
37                         }
38                 }
39         }
40 #endregion
41 }