/* ** BETATRON high level library for platform and action arcade games. ** Copyright (C) 1997 Liouros Thanasis, liouros@hotmail.com ** ** PLVESA.H: This file is part of the BETATRON library and can be used ** and/or distributed only under the terms of the GNU Library ** General Public License. See doc/readme.1st for details. */ #ifndef pl_vesa_h #define pl_vesa_h struct Tplmode { unsigned short modeno; unsigned short Xres,Yres; }; short pl_initvesa(); void pl_donevesa(); short pl_ismodevalid(char *modeinfo,unsigned short mode); short pl_getvesamodes(Tplmode *&listofmodes); short pl_restoreVESAstate(); short pl_saveVESAstate(); void pl_VESAsetstartadr(long addr); #endif