Back to development
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / BinFlags.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.BinFlagsGType))]
12         public enum BinFlags : uint {
13
14                 NoResync = 16384,
15                 StreamsAware = 32768,
16                 Last = 524288,
17         }
18
19         internal class BinFlagsGType {
20                 [DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
21                 static extern IntPtr gst_bin_flags_get_type ();
22
23                 public static GLib.GType GType {
24                         get {
25                                 return new GLib.GType (gst_bin_flags_get_type ());
26                         }
27                 }
28         }
29 #endregion
30 }