public AsyncCallbackWrapper (AsyncCallback managed, object o) : base (o)
		{
			NativeDelegate = new AsyncCallbackNative (NativeCallback);
			_managed = managed;
		}
Exemplo n.º 2
0
		private static extern void gnome_vfs_async_seek (IntPtr handle, SeekPosition whence, long offset, AsyncCallbackNative callback, IntPtr data);
Exemplo n.º 3
0
 public AsyncCallbackWrapper(AsyncCallback managed, object o) : base(o)
 {
     NativeDelegate = new AsyncCallbackNative(NativeCallback);
     _managed       = managed;
 }
Exemplo n.º 4
0
		private static extern void gnome_vfs_async_create (out IntPtr handle, string uri, OpenMode mode, bool exclusive, uint perm, int priority, AsyncCallbackNative callback, IntPtr data);
Exemplo n.º 5
0
		private static extern void gnome_vfs_async_open (out IntPtr handle, string uri, OpenMode mode, int priority, AsyncCallbackNative callback, IntPtr data);
Exemplo n.º 6
0
		private static extern void gnome_vfs_async_close (IntPtr handle, AsyncCallbackNative callback, IntPtr data);
Exemplo n.º 7
0
 private static extern void gnome_vfs_async_open(out IntPtr handle, string uri, OpenMode mode, int priority, AsyncCallbackNative callback, IntPtr data);
Exemplo n.º 8
0
 private static extern void gnome_vfs_async_create(out IntPtr handle, string uri, OpenMode mode, bool exclusive, uint perm, int priority, AsyncCallbackNative callback, IntPtr data);
Exemplo n.º 9
0
 private static extern void gnome_vfs_async_close(IntPtr handle, AsyncCallbackNative callback, IntPtr data);
Exemplo n.º 10
0
 private static extern void gnome_vfs_async_seek(IntPtr handle, SeekPosition whence, long offset, AsyncCallbackNative callback, IntPtr data);