xref: /haiku/src/system/boot/platform/amiga_m68k/console.h (revision 2b76973fa2401f7a5edf68e6470f3d3210cbcff3)
1 /*
2  * Copyright 2007, Haiku, Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT license.
4  *
5  * Author:
6  *		François Revol, revol@free.fr.
7  */
8 
9 #ifndef CONSOLE_H
10 #define CONSOLE_H
11 
12 #include <boot/platform/generic/text_console.h>
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
18 extern struct Screen *gScreen;
19 
20 extern status_t console_init(void);
21 
22 #ifdef __cplusplus
23 }
24 #endif
25 
26 #endif	/* CONSOLE_H */
27