Files
haiku-beta6/src/tools/fs_shell/disk_device_manager.cpp
T
Ingo Weinhold 8c8f8c8420 Added scan_partition() function which can be used by disk systems (e.g.
in *_initialize()) to save some work.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22441 a95241bf-73f2-0310-859d-f6bbb57e9c96
2007-10-04 18:03:24 +00:00

23 lines
375 B
C++

/*
* Copyright 2007, Ingo Weinhold, [email protected].
* Distributed under the terms of the MIT License.
*/
#include "fssh_disk_device_manager.h"
#include "fssh_errors.h"
fssh_status_t
fssh_scan_partition(fssh_partition_id partitionID)
{
return FSSH_B_OK;
}
bool
fssh_update_disk_device_job_progress(fssh_disk_job_id jobID, float progress)
{
return true;
}