in *_initialize()) to save some work. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22441 a95241bf-73f2-0310-859d-f6bbb57e9c96
23 lines
375 B
C++
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;
|
|
}
|