summaryrefslogtreecommitdiff
path: root/sources/generated/Gst.WebRTC/WebRTCICEConnectionState.cs
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2018-03-19 15:49:25 -0300
committerThibault Saunier <tsaunier@igalia.com>2018-07-03 10:03:27 -0400
commit6bada6f67d29a73c416293f2640a2e8d917dab09 (patch)
tree7c8111265a6848bf834310a5858aa1412b603e48 /sources/generated/Gst.WebRTC/WebRTCICEConnectionState.cs
parent2a9149734f38112cfe687e86b23bb823916f7e5a (diff)
Generate bindings for the new GstWebRTC library
Diffstat (limited to 'sources/generated/Gst.WebRTC/WebRTCICEConnectionState.cs')
-rw-r--r--sources/generated/Gst.WebRTC/WebRTCICEConnectionState.cs33
1 files changed, 33 insertions, 0 deletions
diff --git a/sources/generated/Gst.WebRTC/WebRTCICEConnectionState.cs b/sources/generated/Gst.WebRTC/WebRTCICEConnectionState.cs
new file mode 100644
index 0000000..f894208
--- /dev/null
+++ b/sources/generated/Gst.WebRTC/WebRTCICEConnectionState.cs
@@ -0,0 +1,33 @@
+// This file was generated by the Gtk# code generator.
+// Any changes made will be lost if regenerated.
+
+namespace Gst.WebRTC {
+
+ using System;
+ using System.Runtime.InteropServices;
+
+#region Autogenerated code
+ [GLib.GType (typeof (Gst.WebRTC.WebRTCICEConnectionStateGType))]
+ public enum WebRTCICEConnectionState {
+
+ New = 0,
+ Checking = 1,
+ Connected = 2,
+ Completed = 3,
+ Failed = 4,
+ Disconnected = 5,
+ Closed = 6,
+ }
+
+ internal class WebRTCICEConnectionStateGType {
+ [DllImport ("libgstwebrtc-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
+ static extern IntPtr gst_webrtc_ice_connection_state_get_type ();
+
+ public static GLib.GType GType {
+ get {
+ return new GLib.GType (gst_webrtc_ice_connection_state_get_type ());
+ }
+ }
+ }
+#endregion
+}