/* Copyright 2006 Guillaume Duhamel12This file is part of Yabause.34Yabause is free software; you can redistribute it and/or modify5it under the terms of the GNU General Public License as published by6the Free Software Foundation; either version 2 of the License, or7(at your option) any later version.89Yabause is distributed in the hope that it will be useful,10but WITHOUT ANY WARRANTY; without even the implied warranty of11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the12GNU General Public License for more details.1314You should have received a copy of the GNU General Public License15along with Yabause; if not, write to the Free Software16Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA17*/1819#include <Carbon/Carbon.h>2021#include "../yabause.h"22#include "../peripheral.h"23#include "../sh2core.h"24#include "../sh2int.h"25#include "../vidogl.h"26#include "../vidsoft.h"27#include "../scsp.h"28#include "../sndsdl.h"29#include "../cdbase.h"30#include "../cs0.h"31#include "../m68kcore.h"3233extern yabauseinit_struct yinit;3435WindowRef CreateSettingsWindow();3637typedef struct _YuiAction YuiAction;3839/*40struct _YuiAction {41UInt32 key;42const char * name;43void (*press)(void);44void (*release)(void);45};4647extern YuiAction key_config[];48*/495051