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
|
|
|
|
* Copyright (C) 2011-2014 - Daniel De Matteis
|
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"
|
2013-07-15 12:54:40 +00:00
|
|
|
#elif defined(__APPLE__)
|
|
|
|
#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__)
|
|
|
|
#define EXT_EXECUTABLES "self|SELF|bin|BIN"
|
|
|
|
#define SALAMANDER_FILE "EBOOT.BIN"
|
2013-11-02 03:40:51 +00:00
|
|
|
#define PLATFORM_NAME "ps3"
|
2013-07-15 12:54:40 +00:00
|
|
|
#define DEFAULT_EXE_EXT ".SELF"
|
|
|
|
#elif defined(_XBOX1)
|
|
|
|
#define EXT_EXECUTABLES "xbe|XBE"
|
|
|
|
#define SALAMANDER_FILE "default.xbe"
|
|
|
|
#define DEFAULT_EXE_EXT ".xbe"
|
2013-11-02 03:40:51 +00:00
|
|
|
#define PLATFORM_NAME "xdk1"
|
2013-07-15 12:54:40 +00:00
|
|
|
#elif defined(_XBOX360)
|
|
|
|
#define EXT_EXECUTABLES "xex|XEX"
|
|
|
|
#define SALAMANDER_FILE "default.xex"
|
|
|
|
#define DEFAULT_EXE_EXT ".xex"
|
2013-11-02 03:40:51 +00:00
|
|
|
#define PLATFORM_NAME "xdk360"
|
2013-07-15 12:54:40 +00:00
|
|
|
#elif defined(GEKKO)
|
|
|
|
#define EXT_EXECUTABLES "dol|DOL"
|
|
|
|
#define SALAMANDER_FILE "boot.dol"
|
|
|
|
#define DEFAULT_EXE_EXT ".dol"
|
2013-11-02 03:40:51 +00:00
|
|
|
#ifdef HW_RVL
|
|
|
|
#define PLATFORM_NAME "wii"
|
|
|
|
#else
|
|
|
|
#define PLATFORM_NAME "ngc"
|
|
|
|
#endif
|
|
|
|
#elif defined(ANDROID)
|
|
|
|
#define PLATFORM_NAME "android"
|
|
|
|
#elif defined(IOS)
|
|
|
|
#define PLATFORM_NAME "ios"
|
|
|
|
#elif defined(__QNX__)
|
|
|
|
#define PLATFORM_NAME "qnx"
|
2013-07-18 03:09:22 +00:00
|
|
|
#elif defined(EMSCRIPTEN)
|
|
|
|
#define EXT_EXECUTABLES ""
|
2013-07-15 12:54:40 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|