1 /*
2   Hatari - resolution.h
3 
4   This file is distributed under the GNU General Public License, version 2
5   or at your option any later version. Read the file gpl.txt for details.
6 */
7 
8 #ifndef HATARI_RESOLUTION_H
9 #define HATARI_RESOLUTION_H
10 
11 extern void Resolution_Init(void);
12 extern void Resolution_GetDesktopSize(int *width, int *height);
13 extern void Resolution_GetLimits(int *width, int *height, int *bpp, bool keepDesktop);
14 extern bool Resolution_Search(int *width, int *height, int *bpp, bool keepDesktop);
15 
16 #endif
17