Exemplo n.º 1
0
		public static Gst.IndexResolver GetManagedDelegate (IndexResolverNative native)
		{
			if (native == null)
				return null;
			IndexResolverWrapper wrapper = (IndexResolverWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
Exemplo n.º 2
0
		public IndexResolverWrapper (Gst.IndexResolver managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new IndexResolverNative (NativeCallback);
		}
Exemplo n.º 3
0
		internal IndexResolverInvoker (IndexResolverNative native_cb, IntPtr data) : this (native_cb, data, null) {}
Exemplo n.º 4
0
		internal IndexResolverInvoker (IndexResolverNative native_cb, IntPtr data, Gst.GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
Exemplo n.º 5
0
		internal IndexResolverInvoker (IndexResolverNative native_cb) : this (native_cb, IntPtr.Zero, null) {}