mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
38a0731461
Generated files were generated using 'ninja -C build update-code' except for libgstfft, which had to be updated manually (see issue #25). Note: with these changes, building on MS Windows will require the msvc compiler - mingw will no longer work.
30 lines
647 B
C#
30 lines
647 B
C#
// This file was generated by the Gtk# code generator.
|
|
// Any changes made will be lost if regenerated.
|
|
|
|
namespace Gst.Rtsp {
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#region Autogenerated code
|
|
[Flags]
|
|
[GLib.GType (typeof (Gst.Rtsp.RTSPTransModeGType))]
|
|
public enum RTSPTransMode {
|
|
|
|
Unknown = 0,
|
|
Rtp = 1,
|
|
Rdt = 2,
|
|
}
|
|
|
|
internal class RTSPTransModeGType {
|
|
[DllImport ("gstrtsp-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
|
|
static extern IntPtr gst_rtsp_trans_mode_get_type ();
|
|
|
|
public static GLib.GType GType {
|
|
get {
|
|
return new GLib.GType (gst_rtsp_trans_mode_get_type ());
|
|
}
|
|
}
|
|
}
|
|
#endregion
|
|
}
|