Esempio n. 1
0
 public MemoryUnmapFunctionWrapper(Gst.MemoryUnmapFunction managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new MemoryUnmapFunctionNative(NativeCallback);
     }
 }
Esempio n. 2
0
        public static Gst.MemoryUnmapFunction GetManagedDelegate(MemoryUnmapFunctionNative native)
        {
            if (native == null)
            {
                return(null);
            }
            MemoryUnmapFunctionWrapper wrapper = (MemoryUnmapFunctionWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Esempio n. 3
0
 internal MemoryUnmapFunctionInvoker(MemoryUnmapFunctionNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Esempio n. 4
0
 internal MemoryUnmapFunctionInvoker(MemoryUnmapFunctionNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Esempio n. 5
0
 internal MemoryUnmapFunctionInvoker(MemoryUnmapFunctionNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }