Ejemplo n.º 1
0
 public PadQueryFunctionWrapper(Gst.PadQueryFunction managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new PadQueryFunctionNative(NativeCallback);
     }
 }
		public static Gst.PadQueryFunction GetManagedDelegate (PadQueryFunctionNative native)
		{
			if (native == null)
				return null;
			PadQueryFunctionWrapper wrapper = (PadQueryFunctionWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
Ejemplo n.º 3
0
        public static Gst.PadQueryFunction GetManagedDelegate(PadQueryFunctionNative native)
        {
            if (native == null)
            {
                return(null);
            }
            PadQueryFunctionWrapper wrapper = (PadQueryFunctionWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
Ejemplo n.º 4
0
 internal PadQueryFunctionInvoker(PadQueryFunctionNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Ejemplo n.º 5
0
 internal PadQueryFunctionInvoker(PadQueryFunctionNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Ejemplo n.º 6
0
 internal PadQueryFunctionInvoker(PadQueryFunctionNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
		public PadQueryFunctionWrapper (Gst.PadQueryFunction managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new PadQueryFunctionNative (NativeCallback);
		}
		internal PadQueryFunctionInvoker (PadQueryFunctionNative native_cb, IntPtr data, Gst.GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal PadQueryFunctionInvoker (PadQueryFunctionNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal PadQueryFunctionInvoker (PadQueryFunctionNative native_cb) : this (native_cb, IntPtr.Zero, null) {}