mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-04-02 10:52:54 -04:00
Updated the pcsx2_suite_2008.sln; changed SPU2ghz to SPU2-X. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@502 96395faa-99c1-11dd-bbfe-3dabce05a288
77 lines
No EOL
2.1 KiB
C
77 lines
No EOL
2.1 KiB
C
/* Pcsx2 - Pc Ps2 Emulator
|
|
* Copyright (C) 2002-2009 Pcsx2 Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef __CONFIGDLG_H__
|
|
#define __CONFIGDLG_H__
|
|
|
|
#include "Linux.h"
|
|
#include "R3000A.h"
|
|
#include "IopMem.h"
|
|
|
|
typedef enum
|
|
{
|
|
GS,
|
|
PAD1,
|
|
PAD2,
|
|
SPU,
|
|
CDVD,
|
|
DEV9,
|
|
USB,
|
|
FW,
|
|
BIOS
|
|
} plugin_types;
|
|
|
|
typedef struct
|
|
{
|
|
GtkWidget *Combo;
|
|
GList *PluginNameList;
|
|
char plist[255][255];
|
|
int plugins;
|
|
} PluginConf;
|
|
|
|
PluginConf GSConfS;
|
|
PluginConf PAD1ConfS;
|
|
PluginConf PAD2ConfS;
|
|
PluginConf SPU2ConfS;
|
|
PluginConf CDVDConfS;
|
|
PluginConf DEV9ConfS;
|
|
PluginConf USBConfS;
|
|
PluginConf FWConfS;
|
|
PluginConf BiosConfS;
|
|
|
|
GtkWidget *ConfDlg;
|
|
|
|
_PS2EgetLibType PS2EgetLibType = NULL;
|
|
_PS2EgetLibVersion2 PS2EgetLibVersion2 = NULL;
|
|
_PS2EgetLibName PS2EgetLibName = NULL;
|
|
|
|
// Helper Functions
|
|
void FindPlugins();
|
|
void OnConf_Gs(GtkMenuItem *menuitem, gpointer user_data);
|
|
void OnConf_Pads(GtkMenuItem *menuitem, gpointer user_data);
|
|
void OnConf_Cpu(GtkMenuItem *menuitem, gpointer user_data);
|
|
void OnConf_Conf(GtkMenuItem *menuitem, gpointer user_data);
|
|
void SetActiveComboItem(GtkComboBox *widget, char plist[255][255], GList *list, char *conf);
|
|
void SetComboToGList(GtkComboBox *widget, GList *list);
|
|
static void ConfPlugin(PluginConf confs, char* plugin, const char* name);
|
|
static void TestPlugin(PluginConf confs, char* plugin, const char* name);
|
|
|
|
extern void CheckSlots();
|
|
extern bool configuringplug;
|
|
|
|
#endif // __CONFIGDLG_H__
|