gstreamer/sources/generated/Gst.Controller/ProxyControlBinding.cs
Thibault Saunier 2d00f898fb Move generated files to dedicated folders named by namespace
Making it cleaner and simpler to navigate and removing previous
ugly and now useless hack where we were renaming files ourself
to make meson happy.
2018-03-11 21:47:35 -03:00

56 lines
2 KiB
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst.Controller {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
public partial class ProxyControlBinding : Gst.ControlBinding {
public ProxyControlBinding (IntPtr raw) : base(raw) {}
[DllImport("libgstcontroller-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_proxy_control_binding_new(IntPtr _object, IntPtr property_name, IntPtr ref_object, IntPtr ref_property_name);
public ProxyControlBinding (Gst.Object _object, string property_name, Gst.Object ref_object, string ref_property_name) : base (IntPtr.Zero)
{
if (GetType () != typeof (ProxyControlBinding)) {
var vals = new List<GLib.Value> ();
var names = new List<string> ();
if (_object != null) {
names.Add ("_object");
vals.Add (new GLib.Value (_object));
}
CreateNativeObject (names.ToArray (), vals.ToArray ());
return;
}
IntPtr native_property_name = GLib.Marshaller.StringToPtrGStrdup (property_name);
IntPtr native_ref_property_name = GLib.Marshaller.StringToPtrGStrdup (ref_property_name);
Raw = gst_proxy_control_binding_new(_object == null ? IntPtr.Zero : _object.Handle, native_property_name, ref_object == null ? IntPtr.Zero : ref_object.Handle, native_ref_property_name);
GLib.Marshaller.Free (native_property_name);
GLib.Marshaller.Free (native_ref_property_name);
}
[DllImport("libgstcontroller-1.0-0.dll", CallingConvention = CallingConvention.Cdecl)]
static extern IntPtr gst_proxy_control_binding_get_type();
public static new GLib.GType GType {
get {
IntPtr raw_ret = gst_proxy_control_binding_get_type();
GLib.GType ret = new GLib.GType(raw_ret);
return ret;
}
}
static ProxyControlBinding ()
{
GtkSharp.GstreamerSharp.ObjectManager.Initialize ();
}
#endregion
}
}