Back to development
[platform/upstream/gstreamer.git] / subprojects / gstreamer-sharp / sources / generated / Gst / PadDirection.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.PadDirectionGType))]
11         public enum PadDirection {
12
13                 Unknown = 0,
14                 Src = 1,
15                 Sink = 2,
16         }
17
18         internal class PadDirectionGType {
19                 [DllImport ("gstreamer-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
20                 static extern IntPtr gst_pad_direction_get_type ();
21
22                 public static GLib.GType GType {
23                         get {
24                                 return new GLib.GType (gst_pad_direction_get_type ());
25                         }
26                 }
27         }
28 #endregion
29 }