xref: /haiku/src/system/kernel/debug/blue_screen.h (revision 1214ef1b2100f2b3299fc9d8d6142e46f70a4c3f)
1 /*
2  * Copyright 2005-2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef BLUE_SCREEN_H
6 #define BLUE_SCREEN_H
7 
8 
9 #include <SupportDefs.h>
10 
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 status_t blue_screen_init(void);
17 status_t blue_screen_enter(bool debugOutput);
18 
19 char blue_screen_getchar(void);
20 void blue_screen_putchar(char c);
21 void blue_screen_puts(const char *text);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif	/* BLUE_SCREEN_H */
28