RetroArch/file_ext.h

50 lines
1.5 KiB
C
Raw Normal View History

/* 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
*
* 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"
#elif defined(__APPLE__) || defined(__MACH__)
#define EXT_EXECUTABLES "dylib"
#else
2013-07-15 12:56:38 +00:00
#define EXT_EXECUTABLES "so"
#endif
#else
#if defined(__CELLOS_LV2__)
2014-08-30 02:34:41 +00:00
#define EXT_EXECUTABLES "self|bin"
#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"
#elif defined(_XBOX1)
2014-08-30 02:34:41 +00:00
#define EXT_EXECUTABLES "xbe"
#define SALAMANDER_FILE "default.xbe"
#elif defined(_XBOX360)
2014-08-30 02:34:41 +00:00
#define EXT_EXECUTABLES "xex"
#define SALAMANDER_FILE "default.xex"
#elif defined(GEKKO)
2014-08-30 02:34:41 +00:00
#define EXT_EXECUTABLES "dol"
#define SALAMANDER_FILE "boot.dol"
#else
2013-07-18 03:09:22 +00:00
#define EXT_EXECUTABLES ""
#endif
#endif
#endif