Back to development
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / BufferPoolAcquireFlags.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.BufferPoolAcquireFlagsGType))]
12         public enum BufferPoolAcquireFlags : uint {
13
14                 None = 0,
15                 KeyUnit = 1,
16                 Dontwait = 2,
17                 Discont = 4,
18                 Last = 65536,
19         }
20
21         internal class BufferPoolAcquireFlagsGType {
22                 [DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
23                 static extern IntPtr gst_buffer_pool_acquire_flags_get_type ();
24
25                 public static GLib.GType GType {
26                         get {
27                                 return new GLib.GType (gst_buffer_pool_acquire_flags_get_type ());
28                         }
29                 }
30         }
31 #endregion
32 }