Moved the Partition class declaration to the source file.

Added some partition types.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4551 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-09-08 02:39:24 +00:00
parent 6eae77e068
commit e5d542ba54
1 changed files with 5 additions and 13 deletions

View File

@ -10,26 +10,18 @@
#include <disk_device_manager.h>
class Partition : public partition_data, Node {
public:
Partition(int deviceFD);
virtual ~Partition();
virtual ssize_t ReadAt(void *cookie, off_t offset, void *buffer, size_t bufferSize);
virtual ssize_t WriteAt(void *cookie, off_t offset, const void *buffer, size_t bufferSize);
private:
int fFD;
};
// DiskDeviceTypes we need/support in the boot loader
#define kPartitionTypeAmiga "Amiga RDB"
#define kPartitionTypeIntel "Intel"
#define kPartitionTypeIntelExtended "Intel Extended"
#define kPartitionTypeApple "Apple"
#define kPartitionTypeBFS "BFS"
struct partition_module_info;
extern partition_module_info gAmigaPartitionModule;
extern partition_module_info gIntelPartitionModule;
extern partition_module_info gIntelPartitionMapModule;
extern partition_module_info gIntelExtendedPartitionModule;
extern partition_module_info gApplePartitionModule;
#endif /* KERNEL_BOOT_PARTITIONS_H */