15af32e75SAxel Dörfler /* 27a3fa7d3SAxel Dörfler * Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 37a3fa7d3SAxel Dörfler * Distributed under the terms of the MIT License. 45af32e75SAxel Dörfler */ 55af32e75SAxel Dörfler #ifndef CONSOLE_H 65af32e75SAxel Dörfler #define CONSOLE_H 75af32e75SAxel Dörfler 844c11fdbSIngo Weinhold #include <boot/platform/generic/text_console.h> 95af32e75SAxel Dörfler 105af32e75SAxel Dörfler #ifdef __cplusplus 115af32e75SAxel Dörfler extern "C" { 125af32e75SAxel Dörfler #endif 135af32e75SAxel Dörfler 145af32e75SAxel Dörfler extern status_t console_init(void); 15*3c1cb3fdSAndreas Färber extern int console_check_for_key(void); 165af32e75SAxel Dörfler 175af32e75SAxel Dörfler #ifdef __cplusplus 185af32e75SAxel Dörfler } 195af32e75SAxel Dörfler #endif 205af32e75SAxel Dörfler 215af32e75SAxel Dörfler #endif /* CONSOLE_H */ 22