Files
haiku-beta6/headers/private/kernel/boot/partitions.h
T

28 lines
807 B
C
Raw Normal View History

2003-09-03 01:53:41 +00:00
/*
** Copyright 2003, Axel Dörfler, [email protected]. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef KERNEL_BOOT_PARTITIONS_H
#define KERNEL_BOOT_PARTITIONS_H
#include <boot/vfs.h>
#include <disk_device_manager.h>
// DiskDeviceTypes we need/support in the boot loader
#define kPartitionTypeAmiga "Amiga RDB"
#define kPartitionTypeIntel "Intel"
#define kPartitionTypeIntelExtended "Intel Extended"
2003-09-03 01:53:41 +00:00
#define kPartitionTypeApple "Apple"
#define kPartitionTypeBFS "BFS"
2003-09-03 01:53:41 +00:00
struct partition_module_info;
extern partition_module_info gAmigaPartitionModule;
extern partition_module_info gIntelPartitionMapModule;
extern partition_module_info gIntelExtendedPartitionModule;
2003-09-03 01:53:41 +00:00
extern partition_module_info gApplePartitionModule;
#endif /* KERNEL_BOOT_PARTITIONS_H */