home *** CD-ROM | disk | FTP | other *** search
- /* MCGA.H */
- /* (C) 1989 TOOLBOX */
- /* Headerdatei für die Programmierung des Modus 13h */
- /* der VGA-Karte (MCGA) mit einem C-Compiler */
-
-
- void plot (int,int,int);
- int getdotcolor (int,int);
- void initgraphic(void);
- void exitgraphic(void);
- void print(char *,int);
- void setcursor (int,int);
- int cursorx(void);
- int cursory(void);
- void clearscreen (int);
- void colorbox (int, int, int, int, int);
- void mcgasave (char *);
- void mcgaload (char *);
- void box(int,int,int,int,int);
- void line(int,int,int,int,int);
- void setcolor(int,int,int,int);
- void readcolor(int,int *,int *,int*);
- void setcolorblock(int,void *,int);
- void readcolorblock(int,void *,int);
-
- #define swap(X,Y) {int swaptemp;swaptemp=X;X=Y,Y=swaptemp;}