xref: /haiku/src/tools/fs_shell/disk_device_manager.cpp (revision 21258e2674226d6aa732321b6f8494841895af5f)
1 /*
2  * Copyright 2007, Ingo Weinhold, bonefish@cs.tu-berlin.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 #include "fssh_disk_device_manager.h"
7 
8 #include "fssh_errors.h"
9 
10 
11 fssh_status_t
12 fssh_scan_partition(fssh_partition_id partitionID)
13 {
14 	return FSSH_B_OK;
15 }
16 
17 
18 bool
19 fssh_update_disk_device_job_progress(fssh_disk_job_id jobID, float progress)
20 {
21 	return true;
22 }
23