xref: /haiku/src/tests/system/boot/loader/platform_console.cpp (revision 1e60bdeab63fa7a57bc9a55b032052e95a18bd2c)
1 /*
2  * Copyright 2012, Axel Dörfler, axeld@pinc-software.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <boot/platform/generic/text_console.h>
8 
9 
10 void
11 console_clear_screen(void)
12 {
13 }
14 
15 
16 int32
17 console_width(void)
18 {
19 	return 80;
20 }
21 
22 
23 int32
24 console_height(void)
25 {
26 	return 25;
27 }
28 
29 
30 void
31 console_set_cursor(int32 x, int32 y)
32 {
33 }
34 
35 
36 void
37 console_show_cursor(void)
38 {
39 }
40 
41 
42 void
43 console_hide_cursor(void)
44 {
45 }
46 
47 
48 void
49 console_set_color(int32 foreground, int32 background)
50 {
51 }
52 
53 
54 int
55 console_wait_for_key(void)
56 {
57 	return 0;
58 }
59 
60 
61 status_t
62 console_init(void)
63 {
64 	return B_OK;
65 }
66