d305ab35ac
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
36 lines
688 B
C
36 lines
688 B
C
/*
|
|
* Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef KERNEL_FRAME_BUFFER_CONSOLE_H
|
|
#define KERNEL_FRAME_BUFFER_CONSOLE_H
|
|
|
|
#include <console.h>
|
|
|
|
struct kernel_args;
|
|
|
|
|
|
#define FRAME_BUFFER_CONSOLE_MODULE_NAME "console/frame_buffer/v1"
|
|
#define FRAME_BUFFER_BOOT_INFO "frame_buffer/v1"
|
|
|
|
struct frame_buffer_boot_info {
|
|
area_id area;
|
|
addr_t frame_buffer;
|
|
int32 width;
|
|
int32 height;
|
|
int32 depth;
|
|
int32 bytes_per_row;
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
status_t frame_buffer_console_init(struct kernel_args *args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* KERNEL_FRAME_BUFFER_CONSOLE_H */
|