1 /*
2  * OpenBOR - http://www.LavaLit.com
3  * -----------------------------------------------------------------------
4  * Licensed under the BSD license, see LICENSE in OpenBOR root for details.
5  *
6  * Copyright (c) 2004 - 2011 OpenBOR Team
7  */
8 
9 #ifndef VIDEO_H
10 #define VIDEO_H
11 
12 #include "types.h"
13 
14 extern unsigned int current_fps;
15 
16 // Frees all VESA shit when returning to textmode
17 int video_set_mode(s_videomodes);
18 int video_copy_screen(s_screen*);
19 void video_clearscreen();
20 void video_fullscreen_flip();
21 
22 
23 #endif
24 
25