gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst/IteratorResult.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
645 B
C#
Raw Normal View History

2018-01-29 18:56:49 +00:00
// 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.IteratorResultGType))]
public enum IteratorResult {
Done = 0,
Ok = 1,
Resync = 2,
Error = 3,
}
internal class IteratorResultGType {
[DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
2018-01-29 18:56:49 +00:00
static extern IntPtr gst_iterator_result_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_iterator_result_get_type ());
}
}
}
#endregion
}