gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.Video/NavigationEventType.cs

35 lines
784 B
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst.Video {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
[GLib.GType (typeof (Gst.Video.NavigationEventTypeGType))]
public enum NavigationEventType {
Invalid = 0,
KeyPress = 1,
KeyRelease = 2,
MouseButtonPress = 3,
MouseButtonRelease = 4,
MouseMove = 5,
Command = 6,
MouseScroll = 7,
}
internal class NavigationEventTypeGType {
[DllImport ("gstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_navigation_event_type_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_navigation_event_type_get_type ());
}
}
}
#endregion
}