1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
/* This is part of tmview, a dvi previewer. (c) 1995 Thomas Moor */
/* */
/* This program may be used without any warranty. It may be modified and */
/* distributed without any restrictions. */
void vgaopen(void);
void vgagraph(void);
void vgaxscroll(short);
void vgayscroll(short);
void vgaclose(void);
unsigned char vgagetchar(int);
void vgasetmouse(int, int);
void vgagetmouse(int*, int*, int*, int*);
int vgawaitio(fd_set * fdsetin, fd_set * fdsetout, struct timeval *timeout);
void (*vgasetclip)(int, int, int, int);
void (*vgaupdate)(int, int, int, int);
void (*vgadrawrect)(int, int, int, int, int);
void (*vgadrawrector)(int, int, int, int, int);
void (*vgadrawrectbg)(int, int, int, int, int);
int (*vgadimm)(int, int);
void (*vgacopybitmapgs)(int, int, int, int, void*, int);
void (*vgacopybitmapbw)(int, int, int, int, void*, int);
void vgascreen(int);
void vgadrawstatus(char, int, int);
void vgaupdatestatus(void);
int vgasetstatuslines(int);
|