diff --git a/harbour/source/rtl/gtxxx.c b/harbour/source/rtl/gtxxx.c new file mode 100644 index 0000000000..c405ebd6b3 --- /dev/null +++ b/harbour/source/rtl/gtxxx.c @@ -0,0 +1,54 @@ +/* + * 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) +{ +} +