/*	GRAPHIC.H */

typedef struct {
	char	    *ptn;
	short int   sel;
	short int   x1,y1;
	short int   x2,y2;
	char	    img[1];
} BLOCK;

BLOCK *DSP_push_vram(int x1,int y1,int x2,int y2);
void  DSP_pop_vram(BLOCK *para);
void  DSP_msg(char *str,int x,int y,int font,int fc,int bc,int mod);
void  DSP_rbox(int x1,int y1,int x2,int y2,int forcol,int boxcol);
void  DSP_line(int x1,int y1,int x2,int y2,int fcol,int bcol);
void  DSP_lineb(int x1,int y1,int x2,int y2,int col,int mod);
void  DSP_linebf(int x1,int y1,int x2,int y2,int col,int mod);
void  EGB_printf(int x, int y, int fc, int bc, char *form,...);
