Merging gst-build
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst.Audio / AudioFormatFlags.cs
1 // This file was generated by the Gtk# code generator.
2 // Any changes made will be lost if regenerated.
3
4 namespace Gst.Audio {
5
6         using System;
7         using System.Runtime.InteropServices;
8
9 #region Autogenerated code
10         [Flags]
11         [GLib.GType (typeof (Gst.Audio.AudioFormatFlagsGType))]
12         public enum AudioFormatFlags : uint {
13
14                 Integer = 1,
15                 Float = 2,
16                 Signed = 4,
17                 Complex = 16,
18                 Unpack = 32,
19         }
20
21         internal class AudioFormatFlagsGType {
22                 [DllImport ("gstaudio-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
23                 static extern IntPtr gst_audio_format_flags_get_type ();
24
25                 public static GLib.GType GType {
26                         get {
27                                 return new GLib.GType (gst_audio_format_flags_get_type ());
28                         }
29                 }
30         }
31 #endregion
32 }