static MateVFSResult
do_check_same_fs (MateVFSMethod *method,
		  MateVFSURI *a,
		  MateVFSURI *b,
		  gboolean *same_fs_return,
		  MateVFSContext *context)
{
	/* FIXME bugzilla.eazel.com 3837: Not implemented. */
	return mate_vfs_check_same_fs_uris_cancellable (a, b, same_fs_return, context);
}
Пример #2
0
/**
 * mate_vfs_check_same_fs_uris:
 * @source_uri: a uri.
 * @target_uri: another uri.
 * @same_fs_return: pointer to a boolean variable which will be set to %TRUE
 * on return if @source_uri and @target_uri are on the same file system.
 * 
 * Check if @source_uri and @target_uri are on the same file system.
 * 
 * Return value: an integer representing the result of the operation.
 */
MateVFSResult
mate_vfs_check_same_fs_uris (MateVFSURI *source_uri,
			      MateVFSURI *target_uri,
			      gboolean *same_fs_return)
{
	return mate_vfs_check_same_fs_uris_cancellable (source_uri, 
							 target_uri, 
							 same_fs_return,
							 NULL);
}