move gtxxx.c to gt dir

This commit is contained in:
Leslee Griffith
1999-05-27 05:05:19 +00:00
parent 283f95a1b1
commit 1ae17ce7f9

View File

@@ -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 <gtapi.h>
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)
{
}