Release 1.22.7
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / PadProbeReturn.cs
1 // This file was generated by the Gtk# code generator.
2 // Any changes made will be lost if regenerated.
3
4 namespace Gst {
5
6         using System;
7         using System.Runtime.InteropServices;
8
9 #region Autogenerated code
10         [GLib.GType (typeof (Gst.PadProbeReturnGType))]
11         public enum PadProbeReturn {
12
13                 Drop = 0,
14                 Ok = 1,
15                 Remove = 2,
16                 Pass = 3,
17                 Handled = 4,
18         }
19
20         internal class PadProbeReturnGType {
21                 [DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
22                 static extern IntPtr gst_pad_probe_return_get_type ();
23
24                 public static GLib.GType GType {
25                         get {
26                                 return new GLib.GType (gst_pad_probe_return_get_type ());
27                         }
28                 }
29         }
30 #endregion
31 }