diff --git a/desmume/src/cocoa/preferences.h b/desmume/src/cocoa/preferences.h new file mode 100644 index 000000000..567730403 --- /dev/null +++ b/desmume/src/cocoa/preferences.h @@ -0,0 +1,34 @@ +/* Copyright (C) 2007 Jeff Bland + + This file is part of DeSmuME + + DeSmuME 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. + + DeSmuME 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 DeSmuME; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +*/ + +#ifndef PREFERENCES_H_INCLUDED +#define PREFERENCES_H_INCLUDED + +//These string have to be used in various places, +//so having defines makes sure they are consistent + +#define PREF_EXECUTE_UPON_LOAD @"Execute Upon Load" + +#define PREF_FIRMWARE_LANGUAGE @"Firmware Language" +#define PREF_FIRMWARE_PLAYER_NAME @"Firmware Player Name" + +#define PREF_3D_PLUGIN @"3D Graphics Plugin" +#define PREF_SOUND_PLUGIN @"Sound Plugin" + +#endif