Usermode/GUI Shell - Hacking up a GUI terminal
[tpg/acess2.git] / Usermode / Applications / gui_shell_src / include / display.h
1 /*
2  * Acess GUI Terminal
3  * - By John Hodge (thePowersGang)
4  *
5  * display.h
6  * - RichText Termianl Translation
7  */
8 #ifndef _DISPLAY_H_
9 #define _DISPLAY_H_
10
11 extern void     Display_AddText(int Length, const char *UTF8Text);
12 extern void     Display_Newline(int bCarriageReturn);
13 extern void     Display_SetCursor(int Row, int Col);
14 extern void     Display_MoveCursor(int RelRow, int RelCol);
15 extern void     Display_ClearLine(int Dir);     // 0: All, 1: Forward, -1: Reverse
16 extern void     Display_ClearLines(int Dir);    // 0: All, 1: Forward, -1: Reverse
17 extern void     Display_SetForeground(uint32_t RGB);
18 extern void     Display_SetBackground(uint32_t RGB);
19
20 #endif
21

UCC git Repository :: git.ucc.asn.au