Example #1
0
        public static bool NextAddress(Gnome.Vfs.ResolveHandle handle, Gnome.Vfs.Address address)
        {
            bool raw_ret = gnome_vfs_resolve_next_address(handle == null ? IntPtr.Zero : handle.Handle, address == null ? IntPtr.Zero : address.Handle);
            bool ret     = raw_ret;

            return(ret);
        }
Example #2
0
 public static void Free(Gnome.Vfs.ResolveHandle handle)
 {
     gnome_vfs_resolve_free(handle == null ? IntPtr.Zero : handle.Handle);
 }
Example #3
0
 public static void ResetToBeginning(Gnome.Vfs.ResolveHandle handle)
 {
     gnome_vfs_resolve_reset_to_beginning(handle == null ? IntPtr.Zero : handle.Handle);
 }