Compiles again.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5105 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-10-21 04:16:06 +00:00
parent d69f033efd
commit bc0096be96
2 changed files with 17 additions and 3 deletions

View File

@ -15,7 +15,7 @@ platform_get_boot_device(struct stage2_args *args, Node **_device)
status_t
platform_get_boot_partition(struct stage2_args *args, struct list *list,
platform_get_boot_partition(struct stage2_args *args, NodeList *list,
boot::Partition **_partition)
{
return B_ERROR;
@ -23,7 +23,7 @@ platform_get_boot_partition(struct stage2_args *args, struct list *list,
status_t
platform_add_block_devices(stage2_args *args, list *devicesList)
platform_add_block_devices(stage2_args *args, NodeList *devicesList)
{
return B_ERROR;
}

View File

@ -41,8 +41,22 @@ platform_user_menu_requested(void)
}
status_t
platform_allocate_region(void **_address, size_t size, uint8 protection)
{
return B_ERROR;
}
status_t
platform_free_region(void *address, size_t size)
{
return B_ERROR;
}
void
platform_release_heap(void *base)
platform_release_heap(struct stage2_args *args, void *base)
{
}