Path: blob/master/libmupen64plus/mupen64plus-video-glide64mk2/src/Glide64/Config.h
2 views
/*1* Glide64 - Glide video plugin for Nintendo 64 emulators.2* Copyright (c) 2010 Jon Ring3* Copyright (c) 2002 Dave20014*5* This program is free software; you can redistribute it and/or modify6* it under the terms of the GNU General Public License as published by7* the Free Software Foundation; either version 2 of the License, or8* any later version.9*10* This program is distributed in the hope that it will be useful,11* but WITHOUT ANY WARRANTY; without even the implied warranty of12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13* GNU General Public License for more details.14*15* You should have received a copy of the GNU General Public16* Licence along with this program; if not, write to the Free17* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,18* Boston, MA 02110-1301, USA19*/2021#ifndef CONFIG_H22#define CONFIG_H2324#include "winlnxdefs.h"25#include "m64p.h"2627BOOL Config_Open();28int Config_ReadScreenInt(const char *itemname);29PackedScreenResolution Config_ReadScreenSettings();30BOOL Config_ReadInt(const char *itemname, const char *desc, int def_value, int create=TRUE, BOOL isBoolean=TRUE);313233#endif /* CONFIG_H */34353637