xref: /haiku/src/system/boot/platform/openfirmware/video.cpp (revision 1e36cfc2721ef13a187c6f7354dc9cbc485e89d3)
1 /*
2  * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <boot/platform.h>
8 
9 
10 extern "C" void
11 platform_switch_to_logo(void)
12 {
13 	// ToDo: implement me
14 }
15 
16 
17 extern "C" void
18 platform_switch_to_text_mode(void)
19 {
20 	// ToDo: implement me
21 }
22 
23 
24 extern "C" status_t
25 platform_init_video(void)
26 {
27 	// ToDo: implement me
28 	return B_OK;
29 }
30 
31