Some changes regarding partition creation and initialization.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3615 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2003-06-22 23:29:29 +00:00
parent 24d57dc067
commit 031858645f
2 changed files with 14 additions and 11 deletions
+6 -4
View File
@@ -17,18 +17,20 @@ public:
bool SupportsResizingChild(BPartition *child) const;
bool SupportsMoving(BPartition *partition, bool *whileMounted) const;
bool SupportsMovingChild(BPartition *child) const;
bool SupportsParentSystem(const char *system) const;
bool SupportsCreatingChild(BPartition *partition) const;
bool SupportsParentSystem(KPartition *child, const char *system) const;
// True in most cases. NULL == raw device.
bool SupportsChildSystem(const char *system) const;
bool SupportsChildSystem(KPartition *child, const char *system) const;
// False for most file systems, true for most partitioning
// systems.
bool ValidateResize(BPartition *partition, off_t *size) const;
bool ValidateMove(BPartition *partition, off_t *start) const;
bool ValidateResizeChild(BPartition *partition, off_t *size) const;
bool ValidateMoveChild(BPartition *partition, off_t *start) const;
bool ValidateCreateChild(BPartition *partition, off_t *start, off_t *size, const char *parameters) const;
bool ValidateCreateChild(BPartition *partition, off_t *start, off_t *size,
const char *type, const char *parameters) const;
// TODO: We must be able to enumerate the types the system supports.
bool IsPartitioningSystem() const;
bool IsFileSystem() const;