summaryrefslogtreecommitdiff
path: root/sources/generated/Gst/FlowReturn.cs
diff options
context:
space:
mode:
Diffstat (limited to 'sources/generated/Gst/FlowReturn.cs')
-rw-r--r--sources/generated/Gst/FlowReturn.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/sources/generated/Gst/FlowReturn.cs b/sources/generated/Gst/FlowReturn.cs
new file mode 100644
index 0000000..ba8485b
--- /dev/null
+++ b/sources/generated/Gst/FlowReturn.cs
@@ -0,0 +1,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 ("libgstreamer-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
+}