Esempio n. 1
0
 public BusFuncWrapper(Gst.BusFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new BusFuncNative(NativeCallback);
     }
 }
Esempio n. 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;
		}
Esempio n. 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);
        }
Esempio n. 4
0
 internal BusFuncInvoker(BusFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
Esempio n. 5
0
 internal BusFuncInvoker(BusFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
Esempio n. 6
0
 internal BusFuncInvoker(BusFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }
Esempio n. 7
0
 public BusFuncWrapper (Gst.BusFunc managed)
 {
     this.managed = managed;
     if (managed != null)
         NativeDelegate = new BusFuncNative (NativeCallback);
 }
Esempio n. 8
0
 internal BusFuncInvoker (BusFuncNative native_cb)
 {
     this.native_cb = native_cb;
 }
Esempio n. 9
0
		internal BusFuncInvoker (BusFuncNative native_cb, IntPtr data, Gst.GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
Esempio n. 10
0
		internal BusFuncInvoker (BusFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
Esempio n. 11
0
		internal BusFuncInvoker (BusFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
 internal BusFuncInvoker(BusFuncNative native_cb)
 {
     this.native_cb = native_cb;
 }