Release 1.21.90
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / FlowReturn.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         [GLib.GType (typeof (Gst.FlowReturnGType))]
11         public enum FlowReturn {
12
13                 CustomError2 = -102,
14                 CustomError1 = -101,
15                 CustomError = -100,
16                 NotSupported = -6,
17                 Error = -5,
18                 NotNegotiated = -4,
19                 Eos = -3,
20                 Flushing = -2,
21                 NotLinked = -1,
22                 Ok = 0,
23                 CustomSuccess = 100,
24                 CustomSuccess1 = 101,
25                 CustomSuccess2 = 102,
26         }
27
28         internal class FlowReturnGType {
29                 [DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
30                 static extern IntPtr gst_flow_return_get_type ();
31
32                 public static GLib.GType GType {
33                         get {
34                                 return new GLib.GType (gst_flow_return_get_type ());
35                         }
36                 }
37         }
38 #endregion
39 }