summaryrefslogtreecommitdiff
path: root/sources/generated/Gst/FlowReturn.cs
blob: e929fe99e9447039f8734167533594861aee6b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.

namespace Gst {

	using System;
	using System.Runtime.InteropServices;

#region Autogenerated code
	[GLib.GType (typeof (Gst.FlowReturnGType))]
	public enum FlowReturn {

		CustomError2 = -102,
		CustomError1 = -101,
		CustomError = -100,
		NotSupported = -6,
		Error = -5,
		NotNegotiated = -4,
		Eos = -3,
		Flushing = -2,
		NotLinked = -1,
		Ok = 0,
		CustomSuccess = 100,
		CustomSuccess1 = 101,
		CustomSuccess2 = 102,
	}

	internal class FlowReturnGType {
		[DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
		static extern IntPtr gst_flow_return_get_type ();

		public static GLib.GType GType {
			get {
				return new GLib.GType (gst_flow_return_get_type ());
			}
		}
	}
#endregion
}