xref: /haiku/headers/private/kernel/boot/platform/bios_ia32/bios_drive.h (revision 3cb015b1ee509d69c643506e8ff573808c86dcfc)
1 /*
2  * Copyright 2004, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H
6 #define KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H
7 
8 
9 #include <boot/disk_identifier.h>
10 
11 
12 typedef struct bios_drive {
13 	struct bios_drive	*next;
14 	uint16				drive_number;
15 	disk_identifier		identifier;
16 } bios_drive;
17 
18 #endif	/* KERNEL_BOOT_PLATFORM_BIOS_IA32_BIOS_DRIVE_H */
19