Beginning of the integration with the new userland disk system add-on

based code. Small API changes.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22561 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2007-10-15 00:41:18 +00:00
parent 0c13f74dfb
commit 28541deac2
4 changed files with 457 additions and 280 deletions
File diff suppressed because it is too large Load Diff
+11
View File
@@ -458,6 +458,17 @@ BPartition::Delegate::Uninitialize()
}
// GetPartitioningInfo
status_t
BPartition::Delegate::GetPartitioningInfo(BPartitioningInfo* info)
{
if (!fPartitionHandle)
return B_NO_INIT;
return fPartitionHandle->GetPartitioningInfo(info);
}
// GetChildCreationParameterEditor
status_t
BPartition::Delegate::GetChildCreationParameterEditor(const char* type,
+2
View File
@@ -85,6 +85,8 @@ public:
// Modification of child partitions
status_t GetPartitioningInfo(BPartitioningInfo* info);
status_t GetChildCreationParameterEditor(
const char* system,
BDiskDeviceParameterEditor** editor) const;