5#define SCREEN_HEIGHT 24
28#define PRINT_TO_SCREEN 1
29#define PRINT_TO_DEBUGGER 2
33void ClearTopScreen(
void);
34void ClearBottomScreen(
void);
35void ClearScreens(
void);
37void PrintChar(
char c);
38void Printf(
const char* format, ...);
39void VPrintf(
const char* format, va_list args);
40void SetPrintMode(
int mode);
42void SetTopScreenLine(
int line, ScreenColor color,
const char * text);
43void SetTopScreenLineCentered(
int line, ScreenColor color,
const char * text);
44void SetTopScreenLineHighlight(
int line, ScreenColor color,
const char * text,
int pos,
int range, ScreenColor posColor);
46void SetBottomScreenLine(
int line, ScreenColor color,
const char * text);
47void SetBottomScreenLineCentered(
int line, ScreenColor color,
const char * text);
48void SetBottomScreenLineHighlight(
int line, ScreenColor color,
const char * text,
int pos,
int range, ScreenColor posColor);