diff --git a/harbour/source/rtl/gtxxx.c b/harbour/source/rtl/gtxxx.c deleted file mode 100644 index c405ebd6b3..0000000000 --- a/harbour/source/rtl/gtxxx.c +++ /dev/null @@ -1,54 +0,0 @@ -/* - * GTXXX.C: Video subsystem template. - * - * This module is based on VIDMGR by Andrew Clarke and modified for - * the Harbour project - */ - -/* TODO: include any standard headers here */ - -#include - -void gtInit(void) -{ -} - -void gtDone(void) -{ -} - -char gtGetScreenWidth(void) -{ - return (char)0; -} - -char gtGetScreenHeight(void) -{ - return (char)0; -} - -void gtGotoXY(char x, char y) -{ -} - -void gtSetCursorStyle(int style) -{ -} - -int gtGetCursorStyle(void) -{ - return(0); -} - -void gtPuts(char x, char y, char attr, char *str, int len) -{ -} - -void gtGetText(char x1, char y1, char x2, char y2, char *dest) -{ -} - -void gtPutText(char x1, char y1, char x2, char y2, char *srce) -{ -} -