2013-09-16 02:18:16 +00:00
|
|
|
/**
|
|
|
|
* Copyright (C) 2005-2012 Gekko Emulator
|
|
|
|
*
|
|
|
|
* @file platform.h
|
|
|
|
* @author ShizZy <shizzy247@gmail.com>
|
|
|
|
* @date 2012-02-11
|
|
|
|
* @brief Platform detection macros for portable compilation
|
|
|
|
*
|
|
|
|
* @section LICENSE
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 at
|
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
|
|
|
* Official project repository can be found at:
|
|
|
|
* http://code.google.com/p/gekko-gc-emu/
|
|
|
|
*/
|
|
|
|
|
2014-08-17 17:45:50 +00:00
|
|
|
#pragma once
|
2013-09-16 02:18:16 +00:00
|
|
|
|
2014-04-09 00:15:08 +00:00
|
|
|
#include "common/common_types.h"
|
2013-09-16 02:18:16 +00:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Platform definitions
|
|
|
|
|
|
|
|
/// Enumeration for defining the supported platforms
|
|
|
|
#define PLATFORM_NULL 0
|
|
|
|
#define PLATFORM_WINDOWS 1
|
|
|
|
#define PLATFORM_MACOSX 2
|
|
|
|
#define PLATFORM_LINUX 3
|
|
|
|
#define PLATFORM_ANDROID 4
|
|
|
|
#define PLATFORM_IOS 5
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Platform detection
|
|
|
|
|
|
|
|
#ifndef EMU_PLATFORM
|
|
|
|
|
|
|
|
#if defined( __WIN32__ ) || defined( _WIN32 )
|
|
|
|
#define EMU_PLATFORM PLATFORM_WINDOWS
|
|
|
|
|
|
|
|
#elif defined( __APPLE__ ) || defined( __APPLE_CC__ )
|
2014-06-09 23:51:09 +00:00
|
|
|
#define EMU_PLATFORM PLATFORM_MACOSX
|
2013-09-16 02:18:16 +00:00
|
|
|
|
|
|
|
#elif defined(__linux__)
|
|
|
|
#define EMU_PLATFORM PLATFORM_LINUX
|
|
|
|
|
|
|
|
#else // Assume linux otherwise
|
|
|
|
#define EMU_PLATFORM PLATFORM_LINUX
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(__x86_64__) || defined(_M_X64) || defined(__alpha__) || defined(__ia64__)
|
|
|
|
#define EMU_ARCHITECTURE_X64
|
|
|
|
#else
|
|
|
|
#define EMU_ARCHITECTURE_X86
|
|
|
|
#endif
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Compiler-Specific Definitions
|
|
|
|
|
|
|
|
#if EMU_PLATFORM == PLATFORM_WINDOWS
|
|
|
|
|
2013-09-24 01:47:24 +00:00
|
|
|
#include <time.h>
|
|
|
|
|
2014-11-29 05:38:20 +00:00
|
|
|
#ifndef NOMINMAX
|
2013-09-16 02:18:16 +00:00
|
|
|
#define NOMINMAX
|
2014-11-29 05:38:20 +00:00
|
|
|
#endif
|
2013-09-16 02:18:16 +00:00
|
|
|
#define EMU_FASTCALL __fastcall
|
|
|
|
|
2014-11-29 05:38:20 +00:00
|
|
|
#ifdef _MSVC_VER
|
2013-09-24 01:47:24 +00:00
|
|
|
inline struct tm* localtime_r(const time_t *clock, struct tm *result) {
|
2014-04-01 22:20:08 +00:00
|
|
|
if (localtime_s(result, clock) == 0)
|
|
|
|
return result;
|
|
|
|
return NULL;
|
2013-09-24 01:47:24 +00:00
|
|
|
}
|
2014-11-29 05:38:20 +00:00
|
|
|
#endif
|
2013-09-24 01:47:24 +00:00
|
|
|
|
2013-09-16 02:18:16 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
#define EMU_FASTCALL __attribute__((fastcall))
|
|
|
|
#define __stdcall
|
|
|
|
#define __cdecl
|
|
|
|
|
|
|
|
#define BOOL bool
|
|
|
|
#define DWORD u32
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if EMU_PLATFORM != PLATFORM_WINDOWS
|
|
|
|
|
|
|
|
// TODO: Hacks..
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
|
|
#include <strings.h>
|
|
|
|
#define stricmp(str1, str2) strcasecmp(str1, str2)
|
|
|
|
#define _stricmp(str1, str2) strcasecmp(str1, str2)
|
|
|
|
#define _snprintf snprintf
|
|
|
|
#define _getcwd getcwd
|
|
|
|
#define _tzset tzset
|
|
|
|
|
|
|
|
typedef void EXCEPTION_POINTERS;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define GCC_VERSION_AVAILABLE(major, minor) (defined(__GNUC__) && (__GNUC__ > (major) || \
|
|
|
|
(__GNUC__ == (major) && __GNUC_MINOR__ >= (minor))))
|