X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Fgui_shell_src%2Finclude%2Fdisplay.h;h=4feaf352d2be80ff950b0d3556cdeab0ab2ccce5;hb=e5deb25fdad3bf008df40679082abdc999d5d1d9;hp=648a2de7cf39e5d890b8bec21f715d886a9f5efa;hpb=55ef4dd6e0ce70e703d79129ba66bed63b296e45;p=tpg%2Facess2.git diff --git a/Usermode/Applications/gui_shell_src/include/display.h b/Usermode/Applications/gui_shell_src/include/display.h index 648a2de7..4feaf352 100644 --- a/Usermode/Applications/gui_shell_src/include/display.h +++ b/Usermode/Applications/gui_shell_src/include/display.h @@ -3,13 +3,15 @@ * - By John Hodge (thePowersGang) * * display.h - * - RichText Termianl Translation + * - RichText terminal translation */ #ifndef _DISPLAY_H_ #define _DISPLAY_H_ #include +extern void Display_Init(int Cols, int Lines, int ExtraScrollbackLines); + extern void Display_AddText(int Length, const char *UTF8Text); extern void Display_Newline(int bCarriageReturn); extern void Display_SetCursor(int Row, int Col); @@ -24,5 +26,10 @@ extern void Display_SetBackground(uint32_t RGB); */ extern void Display_Flush(void); +/** + * \brief Switch the display to the alternate buffer (no scrollback) + */ +extern void Display_ShowAltBuffer(int AltBufEnabled); + #endif