예제 #1
0
 public BusFuncWrapper(Gst.BusFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new BusFuncNative(NativeCallback);
     }
 }
예제 #2
0
		public static Gst.BusFunc GetManagedDelegate (BusFuncNative native)
		{
			if (native == null)
				return null;
			BusFuncWrapper wrapper = (BusFuncWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
예제 #3
0
        public static Gst.BusFunc GetManagedDelegate(BusFuncNative native)
        {
            if (native == null)
            {
                return(null);
            }
            BusFuncWrapper wrapper = (BusFuncWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
예제 #4
0
 internal BusFuncInvoker(BusFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
예제 #5
0
 internal BusFuncInvoker(BusFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
예제 #6
0
 internal BusFuncInvoker(BusFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
예제 #7
0
파일: BusFunc.cs 프로젝트: h0rm/No.Noise
 public BusFuncWrapper (Gst.BusFunc managed)
 {
     this.managed = managed;
     if (managed != null)
         NativeDelegate = new BusFuncNative (NativeCallback);
 }
예제 #8
0
파일: BusFunc.cs 프로젝트: h0rm/No.Noise
 internal BusFuncInvoker (BusFuncNative native_cb)
 {
     this.native_cb = native_cb;
 }
예제 #9
0
		internal BusFuncInvoker (BusFuncNative native_cb, IntPtr data, Gst.GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
예제 #10
0
		internal BusFuncInvoker (BusFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
예제 #11
0
		internal BusFuncInvoker (BusFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
 internal BusFuncInvoker(BusFuncNative native_cb)
 {
     this.native_cb = native_cb;
 }