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 extern int scaleVideo;
13 
14 int video_set_mode(s_videomodes);
15 int video_copy_screen(s_screen*);
16 void video_clearscreen();
17 
18 #endif
19