Beispiel #1
0
 public MetaForeachFuncWrapper(GES.MetaForeachFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new MetaForeachFuncNative(NativeCallback);
     }
 }
Beispiel #2
0
        public static GES.MetaForeachFunc GetManagedDelegate(MetaForeachFuncNative native)
        {
            if (native == null)
            {
                return(null);
            }
            MetaForeachFuncWrapper wrapper = (MetaForeachFuncWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Beispiel #3
0
 internal MetaForeachFuncInvoker(MetaForeachFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Beispiel #4
0
 internal MetaForeachFuncInvoker(MetaForeachFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Beispiel #5
0
 internal MetaForeachFuncInvoker(MetaForeachFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }