Added the get_boot_item() call similar to what BeOS exports (have a look at
the APM driver to see it at work). The frame buffer console now creates such a boot item to give a potential VESA driver access to the boot frame buffer configuration. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12221 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright 2005, Axel Dörfler, [email protected]. 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 */
|
||||
Reference in New Issue
Block a user