gstreamer/sources/generated/Gst/GstSharp.IteratorCopyFunctionNative.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

92 lines
2.5 KiB
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace GstSharp {
using System;
using System.Runtime.InteropServices;
#region Autogenerated code
[UnmanagedFunctionPointer (CallingConvention.Cdecl)]
internal delegate void IteratorCopyFunctionNative(IntPtr it, IntPtr copy);
internal class IteratorCopyFunctionInvoker {
IteratorCopyFunctionNative native_cb;
IntPtr __data;
GLib.DestroyNotify __notify;
~IteratorCopyFunctionInvoker ()
{
if (__notify == null)
return;
__notify (__data);
}
internal IteratorCopyFunctionInvoker (IteratorCopyFunctionNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
internal IteratorCopyFunctionInvoker (IteratorCopyFunctionNative native_cb, IntPtr data) : this (native_cb, data, null) {}
internal IteratorCopyFunctionInvoker (IteratorCopyFunctionNative native_cb, IntPtr data, GLib.DestroyNotify notify)
{
this.native_cb = native_cb;
__data = data;
__notify = notify;
}
internal Gst.IteratorCopyFunction Handler {
get {
return new Gst.IteratorCopyFunction(InvokeNative);
}
}
void InvokeNative (Gst.Iterator it, Gst.Iterator copy)
{
native_cb (it == null ? IntPtr.Zero : it.Handle, copy == null ? IntPtr.Zero : copy.Handle);
}
}
internal class IteratorCopyFunctionWrapper {
public void NativeCallback (IntPtr it, IntPtr copy)
{
try {
managed (it == IntPtr.Zero ? null : (Gst.Iterator) GLib.Opaque.GetOpaque (it, typeof (Gst.Iterator), false), copy == IntPtr.Zero ? null : (Gst.Iterator) GLib.Opaque.GetOpaque (copy, typeof (Gst.Iterator), false));
if (release_on_call)
gch.Free ();
} catch (Exception e) {
GLib.ExceptionManager.RaiseUnhandledException (e, false);
}
}
bool release_on_call = false;
GCHandle gch;
public void PersistUntilCalled ()
{
release_on_call = true;
gch = GCHandle.Alloc (this);
}
internal IteratorCopyFunctionNative NativeDelegate;
Gst.IteratorCopyFunction managed;
public IteratorCopyFunctionWrapper (Gst.IteratorCopyFunction managed)
{
this.managed = managed;
if (managed != null)
NativeDelegate = new IteratorCopyFunctionNative (NativeCallback);
}
public static Gst.IteratorCopyFunction GetManagedDelegate (IteratorCopyFunctionNative native)
{
if (native == null)
return null;
IteratorCopyFunctionWrapper wrapper = (IteratorCopyFunctionWrapper) native.Target;
if (wrapper == null)
return null;
return wrapper.managed;
}
}
#endregion
}