Release 1.21.90
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / FlagSet.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.Collections;
8         using System.Collections.Generic;
9         using System.Runtime.InteropServices;
10
11 #region Autogenerated code
12         public partial class FlagSet : GLib.Opaque {
13
14                 [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
15                 static extern IntPtr gst_flagset_get_type();
16
17                 public static GLib.GType GType { 
18                         get {
19                                 IntPtr raw_ret = gst_flagset_get_type();
20                                 GLib.GType ret = new GLib.GType(raw_ret);
21                                 return ret;
22                         }
23                 }
24
25                 [DllImport("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
26                 static extern IntPtr gst_flagset_register(IntPtr flags_type);
27
28                 public static GLib.GType Register(GLib.GType flags_type) {
29                         IntPtr raw_ret = gst_flagset_register(flags_type.Val);
30                         GLib.GType ret = new GLib.GType(raw_ret);
31                         return ret;
32                 }
33
34                 public FlagSet(IntPtr raw) : base(raw) {}
35
36
37                 // Internal representation of the wrapped structure ABI.
38                 static GLib.AbiStruct _abi_info = null;
39                 static public GLib.AbiStruct abi_info {
40                         get {
41                                 if (_abi_info == null)
42                                         _abi_info = new GLib.AbiStruct (new List<GLib.AbiField>{ 
43                                         });
44
45                                 return _abi_info;
46                         }
47                 }
48
49
50                 // End of the ABI representation.
51
52 #endregion
53         }
54 }