static MateVFSResult
do_get_file_info_from_handle (MateVFSMethod *method,
			      MateVFSMethodHandle *method_handle,
			      MateVFSFileInfo *file_info,
			      MateVFSFileInfoOptions options,
			      MateVFSContext *context)
{
	PERFORM_OPERATION_NO_URI (get_file_info_from_handle, mate_vfs_get_file_info_from_handle_cancellable ((MateVFSHandle *) method_handle, file_info, options, context));
}
Example #2
0
/**
 * mate_vfs_get_file_info_from_handle:
 * @handle: handle of the file for which information must be retrieved.
 * @info: pointer to a #MateVFSFileInfo object that will hold the information
 * for the file on return.
 * @options: options for retrieving file information.
 * 
 * Retrieve information about an open file.  The information will be stored in
 * @info.
 * 
 * Return value: an integer representing the result of the operation.
 */
MateVFSResult
mate_vfs_get_file_info_from_handle (MateVFSHandle *handle,
				     MateVFSFileInfo *info,
				     MateVFSFileInfoOptions options)
{
	return mate_vfs_get_file_info_from_handle_cancellable (handle, info,
								options,
								NULL);
}