1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-23 23:17:45 +00:00

Add tgi_horline

git-svn-id: svn://svn.cc65.org/cc65/trunk@1336 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz
2002-07-07 11:12:41 +00:00
parent 613cb2ff77
commit e2f95ebca5
4 changed files with 13 additions and 12 deletions
+3 -3
View File
@@ -56,8 +56,7 @@ typedef struct {
unsigned yres; /* Y resolution */
unsigned char colorcount; /* Number of available colors */
unsigned char pagecount; /* Number of screens available */
unsigned char error; /* Error code */
unsigned char res[5]; /* Reserved for extensions */
unsigned char res[6]; /* Reserved for extensions */
/* Jump vectors. Note that these are not C callable */
void* install; /* INSTALL routine */
@@ -75,6 +74,7 @@ typedef struct {
void* getdefpalette; /* GETDEFPALETTE routine */
void* setpixel; /* SETPIXEL routine */
void* getpixel; /* GETPIXEL routine */
void* horline; /* HORLINE routine */
void* line; /* LINE routine */
void* bar; /* BAR routine */
void* circle; /* CIRCLE routine */
@@ -116,4 +116,4 @@ void __fastcall__ tgi_setup (void);