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