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