Now uses the DoublyLinked::List class instead of the C list stuff.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5016 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2003-10-14 00:26:04 +00:00
parent 52f5e4a81b
commit c3e36ff498
3 changed files with 11 additions and 9 deletions
+3 -3
View File
@@ -7,7 +7,7 @@
#include <SupportDefs.h>
#include <util/list.h>
#include <boot/vfs.h>
struct stage2_args;
@@ -39,8 +39,8 @@ namespace boot {
// these functions have to be implemented in C++
extern status_t platform_get_boot_device(struct stage2_args *args, Node **_device);
extern status_t platform_add_block_devices(struct stage2_args *args, struct list *devicesList);
extern status_t platform_get_boot_partition(struct stage2_args *args, struct list *partitions,
extern status_t platform_add_block_devices(struct stage2_args *args, NodeList *devicesList);
extern status_t platform_get_boot_partition(struct stage2_args *args, NodeList *partitions,
boot::Partition **_partition);
#endif