gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.Video/NavigationModifierType.cs
Andoni Morales Alastruey 4be602a137 csharp: update c# bindings
Update to C# bindings to use a more recent version of GtkSharp
and regenerate the bindings with that version

Fix #1718
2023-12-07 17:34:34 +01:00

46 lines
1,015 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
[Flags]
[GLib.GType (typeof (Gst.Video.NavigationModifierTypeGType))]
public enum NavigationModifierType : uint {
None = 0,
ShiftMask = 1,
LockMask = 2,
ControlMask = 4,
Mod1Mask = 8,
Mod2Mask = 16,
Mod3Mask = 32,
Mod4Mask = 64,
Mod5Mask = 128,
Button1Mask = 256,
Button2Mask = 512,
Button3Mask = 1024,
Button4Mask = 2048,
Button5Mask = 4096,
SuperMask = 67108864,
HyperMask = 134217728,
MetaMask = 268435456,
Mask = 469770239,
}
internal class NavigationModifierTypeGType {
[DllImport ("gstvideo-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_navigation_modifier_type_get_type ();
public static GLib.GType GType {
get {
return new GLib.GType (gst_navigation_modifier_type_get_type ());
}
}
}
#endregion
}