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