X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FApplications%2Fgui_shell_src%2Finclude%2Fvt100.h;h=162991b003dfa02fbe312085f37eef3231cb74c9;hb=704880994998a15d512860b5bb68d4b7285db510;hp=13f830e2e9a6e7c048bde3cca124d37db167990d;hpb=f194730e75d6d3681e5f99a4efed1616fd1ea738;p=tpg%2Facess2.git diff --git a/Usermode/Applications/gui_shell_src/include/vt100.h b/Usermode/Applications/gui_shell_src/include/vt100.h index 13f830e2..162991b0 100644 --- a/Usermode/Applications/gui_shell_src/include/vt100.h +++ b/Usermode/Applications/gui_shell_src/include/vt100.h @@ -8,6 +8,8 @@ #ifndef _VT100_H_ #define _VT100_H_ +#include "display.h" + /** * Returns either a positive or negative byte count. * Positive means that many bytes were used as part of the escape sequence @@ -15,7 +17,7 @@ * Negative means that there were that many bytes before the next escape * sequence (and hence those should be displayed). */ -extern int Term_HandleVT100(int Len, const char *Buf); +extern int Term_HandleVT100(tTerminal *Term, int Len, const char *Buf); #endif