1/*
2 * Copyright 2005-2008, 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
12extern "C" {
13#endif
14
15extern status_t boot_item_init(void);
16
17extern status_t add_boot_item(const char *name, void *data, size_t size);
18extern void *get_boot_item(const char *name, size_t *_size);
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif	/* _KERNEL_BOOT_ITEM_H */
25