1 /* 2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _KERNEL_BOOT_ITEM_H 6 #define _KERNEL_BOOT_ITEM_H 7 8 #include <SupportDefs.h> 9 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 extern status_t boot_item_init(void); 16 17 extern status_t add_boot_item(const char *name, void *data, size_t size); 18 extern void *get_boot_item(const char *name); 19 20 #ifdef __cplusplus 21 } 22 #endif 23 24 #endif /* _KERNEL_BOOT_ITEM_H */ 25