/* Copyright 2006 Guillaume Duhamel1Copyright 2006 Fabien Coulon23This file is part of Yabause.45Yabause is free software; you can redistribute it and/or modify6it under the terms of the GNU General Public License as published by7the Free Software Foundation; either version 2 of the License, or8(at your option) any later version.910Yabause is distributed in the hope that it will be useful,11but WITHOUT ANY WARRANTY; without even the implied warranty of12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13GNU General Public License for more details.1415You should have received a copy of the GNU General Public License16along with Yabause; if not, write to the Free Software17Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA18*/1920#ifndef YUI_SETTINGS_H21#define YUI_SETTINGS_H2223#include <gtk/gtk.h>2425#include "../vdp1.h"26#include "../vdp2.h"27#include "../scsp.h"28#include "../yabause.h"29#include "../cdbase.h"30#include "../peripheral.h"3132#include "yuiwindow.h"3334extern GKeyFile * keyfile;35extern yabauseinit_struct yinit;3637extern void YuiSaveState(void);38extern void YuiLoadState(void);3940GtkWidget* create_dialog1(void);41GtkWidget* create_menu(YuiWindow *);4243void yui_conf(void);44void yui_resize(guint, guint, gboolean);4546void gtk_yui_toggle_fullscreen(void);4748void yui_texture_free(guchar *pixels, gpointer data);4950#endif515253