Glide Plugin GLES2 port from mupen64plus-ae, but with special FrameSkip code
[mupen64plus-pandora.git] / source / gles2glide64 / src / Glide64 / Config.h
CommitLineData
98e75f2d 1/*
2* Glide64 - Glide video plugin for Nintendo 64 emulators.
3* Copyright (c) 2010 Jon Ring
4* Copyright (c) 2002 Dave2001
5*
6* This program is free software; you can redistribute it and/or modify
7* it under the terms of the GNU General Public License as published by
8* the Free Software Foundation; either version 2 of the License, or
9* any later version.
10*
11* This program is distributed in the hope that it will be useful,
12* but WITHOUT ANY WARRANTY; without even the implied warranty of
13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14* GNU General Public License for more details.
15*
16* You should have received a copy of the GNU General Public
17* Licence along with this program; if not, write to the Free
18* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19* Boston, MA 02110-1301, USA
20*/
21
22#ifndef CONFIG_H
23#define CONFIG_H
24
25#include "winlnxdefs.h"
26#include "m64p.h"
27
28BOOL Config_Open();
29int Config_ReadScreenInt(const char *itemname);
30PackedScreenResolution Config_ReadScreenSettings();
31BOOL Config_ReadInt(const char *itemname, const char *desc, int def_value, int create=TRUE, BOOL isBoolean=TRUE);
32
33
34#endif /* CONFIG_H */
35