Working on the TGI library

git-svn-id: svn://svn.cc65.org/cc65/trunk@1323 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-06-22 21:40:24 +00:00
parent 897c1d8523
commit bf944755dd
16 changed files with 202 additions and 50 deletions

View File

@@ -95,6 +95,12 @@ unsigned char __fastcall__ tgi_geterror (void);
void __fastcall__ tgi_clear (void);
/* Clear the screen */
void __fastcall__ tgi_setviewpage (unsigned char page);
/* Set the visible page. */
void __fastcall__ tgi_setdrawpage (unsigned char page);
/* Set the drawable page */
unsigned char __fastcall__ tgi_getmaxcolor (void);
/* Return the maximum supported color number (the number of colors would
* then be getmaxcolor()+1).
@@ -110,6 +116,9 @@ unsigned __fastcall__ tgi_getmaxy (void);
* getmaxy() + 1
*/
unsigned char __fastcall__ tgi_getcolorcount (void);
/* Get the number of available colors */
unsigned __fastcall__ tgi_getxres (void);
/* Return the resolution in X direction */