2005-04-01 19:09:09 +04:00
|
|
|
/*
|
2008-03-30 15:01:41 +04:00
|
|
|
* Copyright 2005-2008, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
2005-04-01 19:09:09 +04:00
|
|
|
* 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
|
|
|
|
|
2005-06-13 17:01:13 +04:00
|
|
|
extern status_t boot_item_init(void);
|
|
|
|
|
2005-04-01 19:09:09 +04:00
|
|
|
extern status_t add_boot_item(const char *name, void *data, size_t size);
|
2008-03-30 15:01:41 +04:00
|
|
|
extern void *get_boot_item(const char *name, size_t *_size);
|
2005-04-01 19:09:09 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _KERNEL_BOOT_ITEM_H */
|