public AsyncCallbackWrapper (AsyncCallback managed, object o) : base (o)
		{
			NativeDelegate = new AsyncCallbackNative (NativeCallback);
			_managed = managed;
		}
		private static extern void gnome_vfs_async_seek (IntPtr handle, SeekPosition whence, long offset, AsyncCallbackNative callback, IntPtr data);
Beispiel #3
0
 public AsyncCallbackWrapper(AsyncCallback managed, object o) : base(o)
 {
     NativeDelegate = new AsyncCallbackNative(NativeCallback);
     _managed       = managed;
 }
		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);
		private static extern void gnome_vfs_async_open (out IntPtr handle, string uri, OpenMode mode, int priority, AsyncCallbackNative callback, IntPtr data);
		private static extern void gnome_vfs_async_close (IntPtr handle, AsyncCallbackNative callback, IntPtr data);
Beispiel #7
0
 private static extern void gnome_vfs_async_open(out IntPtr handle, string uri, OpenMode mode, int priority, AsyncCallbackNative callback, IntPtr data);
Beispiel #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);
Beispiel #9
0
 private static extern void gnome_vfs_async_close(IntPtr handle, AsyncCallbackNative callback, IntPtr data);
Beispiel #10
0
 private static extern void gnome_vfs_async_seek(IntPtr handle, SeekPosition whence, long offset, AsyncCallbackNative callback, IntPtr data);