public MemoryMapFunctionWrapper(Gst.MemoryMapFunction managed) { this.managed = managed; if (managed != null) { NativeDelegate = new MemoryMapFunctionNative(NativeCallback); } }
public static Gst.MemoryMapFunction GetManagedDelegate(MemoryMapFunctionNative native) { if (native == null) { return(null); } MemoryMapFunctionWrapper wrapper = (MemoryMapFunctionWrapper)native.Target; if (wrapper == null) { return(null); } return(wrapper.managed); }
internal MemoryMapFunctionInvoker(MemoryMapFunctionNative native_cb, IntPtr data) : this(native_cb, data, null) { }
internal MemoryMapFunctionInvoker(MemoryMapFunctionNative native_cb, IntPtr data, GLib.DestroyNotify notify) { this.native_cb = native_cb; __data = data; __notify = notify; }
internal MemoryMapFunctionInvoker(MemoryMapFunctionNative native_cb) : this(native_cb, IntPtr.Zero, null) { }