Added header for the frame buffer console module. It's here because it

will also get syscall that the app_server has to call in order to update
the frame buffer configuration.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11352 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2005-02-12 03:50:49 +00:00
parent f5a934c950
commit 9b0f912d96
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
/*
* 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"
#ifdef __cplusplus
extern "C" {
#endif
status_t frame_buffer_console_init(struct kernel_args *args);
#ifdef __cplusplus
}
#endif
#endif /* KERNEL_FRAME_BUFFER_CONSOLE_H */