mirror of
https://review.haiku-os.org/haiku
synced 2025-01-21 22:04:49 +01:00
23 lines
444 B
C
23 lines
444 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 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 */
|