a69e0ac327
no items can be removed from that list - nevertheless, it's wrong. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13088 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
483 B
C
25 lines
483 B
C
/*
|
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_BOOT_ITEM_H
|
|
#define _KERNEL_BOOT_ITEM_H
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern status_t boot_item_init(void);
|
|
|
|
extern status_t add_boot_item(const char *name, void *data, size_t size);
|
|
extern void *get_boot_item(const char *name);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_BOOT_ITEM_H */
|