2013-07-15 12:54:40 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2015-01-07 16:46:50 +00:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2015-08-30 14:12:45 +00:00
|
|
|
*
|
2013-07-15 12:54:40 +00:00
|
|
|
* RetroArch 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 Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch 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 RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FILE_EXT_H
|
|
|
|
#define _FILE_EXT_H
|
|
|
|
|
|
|
|
#ifdef HAVE_DYNAMIC
|
|
|
|
#ifdef _WIN32
|
2013-07-15 12:56:38 +00:00
|
|
|
#define EXT_EXECUTABLES "dll"
|
2014-02-09 22:32:32 +00:00
|
|
|
#elif defined(__APPLE__) || defined(__MACH__)
|
2013-07-15 12:54:40 +00:00
|
|
|
#define EXT_EXECUTABLES "dylib"
|
|
|
|
#else
|
2013-07-15 12:56:38 +00:00
|
|
|
#define EXT_EXECUTABLES "so"
|
2013-07-15 12:54:40 +00:00
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#if defined(__CELLOS_LV2__)
|
2014-08-30 02:34:41 +00:00
|
|
|
#define EXT_EXECUTABLES "self|bin"
|
2013-07-15 12:54:40 +00:00
|
|
|
#define SALAMANDER_FILE "EBOOT.BIN"
|
2014-02-11 15:10:40 +00:00
|
|
|
#elif defined(PSP)
|
2014-08-30 02:34:41 +00:00
|
|
|
#define EXT_EXECUTABLES "pbp"
|
2014-02-11 15:10:40 +00:00
|
|
|
#define SALAMANDER_FILE "EBOOT.PBP"
|
2015-08-30 14:12:45 +00:00
|
|
|
#elif defined(VITA)
|
|
|
|
#define EXT_EXECUTABLES "velf"
|
|
|
|
#define SALAMANDER_FILE "default.velf"
|
2013-07-15 12:54:40 +00:00
|
|
|
#elif defined(_XBOX1)
|
2014-08-30 02:34:41 +00:00
|
|
|
#define EXT_EXECUTABLES "xbe"
|
2013-07-15 12:54:40 +00:00
|
|
|
#define SALAMANDER_FILE "default.xbe"
|
|
|
|
#elif defined(_XBOX360)
|
2014-08-30 02:34:41 +00:00
|
|
|
#define EXT_EXECUTABLES "xex"
|
2013-07-15 12:54:40 +00:00
|
|
|
#define SALAMANDER_FILE "default.xex"
|
|
|
|
#elif defined(GEKKO)
|
2014-08-30 02:34:41 +00:00
|
|
|
#define EXT_EXECUTABLES "dol"
|
2013-07-15 12:54:40 +00:00
|
|
|
#define SALAMANDER_FILE "boot.dol"
|
2014-12-09 03:27:40 +00:00
|
|
|
#else
|
2013-07-18 03:09:22 +00:00
|
|
|
#define EXT_EXECUTABLES ""
|
2013-07-15 12:54:40 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|