2015-05-24 07:55:12 +03:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-18 02:08:10 +03:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 06:09:55 +03:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-07 10:35:01 +02:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2009-03-07 10:35:01 +02:00
|
|
|
|
2015-04-07 23:15:21 +03:00
|
|
|
#include <string>
|
2014-02-19 20:46:47 +02:00
|
|
|
#include "Common/CommonTypes.h"
|
2013-09-12 03:19:36 +03:00
|
|
|
|
2009-03-07 10:35:01 +02:00
|
|
|
#ifndef _WIN32
|
|
|
|
|
|
|
|
// go to debugger mode
|
2015-11-19 08:49:42 +02:00
|
|
|
#define Crash() \
|
|
|
|
{ \
|
|
|
|
__builtin_trap(); \
|
|
|
|
}
|
2013-09-12 03:19:36 +03:00
|
|
|
|
2009-03-07 10:35:01 +02:00
|
|
|
#else // WIN32
|
|
|
|
// Function Cross-Compatibility
|
|
|
|
#define strcasecmp _stricmp
|
|
|
|
#define strncasecmp _strnicmp
|
|
|
|
#define unlink _unlink
|
2009-11-08 10:54:09 +02:00
|
|
|
#define vscprintf _vscprintf
|
2013-10-29 07:23:17 +02:00
|
|
|
|
2015-01-11 07:17:29 +02:00
|
|
|
// 64 bit offsets for Windows
|
2010-12-04 05:50:55 +02:00
|
|
|
#define fseeko _fseeki64
|
|
|
|
#define ftello _ftelli64
|
2009-03-07 10:35:01 +02:00
|
|
|
#define atoll _atoi64
|
2016-07-17 13:30:00 +03:00
|
|
|
#define stat _stat64
|
|
|
|
#define fstat _fstat64
|
2010-12-03 14:42:01 +02:00
|
|
|
#define fileno _fileno
|
2016-06-24 11:43:46 +03:00
|
|
|
|
2014-08-03 21:42:06 +03:00
|
|
|
extern "C" {
|
2009-03-07 10:35:01 +02:00
|
|
|
__declspec(dllimport) void __stdcall DebugBreak(void);
|
|
|
|
}
|
2014-08-03 21:42:06 +03:00
|
|
|
#define Crash() \
|
|
|
|
{ \
|
|
|
|
DebugBreak(); \
|
|
|
|
}
|
2009-03-07 10:35:01 +02:00
|
|
|
#endif // WIN32 ndef
|
|
|
|
|
2017-08-17 22:12:44 +03:00
|
|
|
// Wrapper function to get last strerror(errno) string.
|
2009-03-07 10:35:01 +02:00
|
|
|
// This function might change the error code.
|
2017-08-17 22:12:44 +03:00
|
|
|
std::string LastStrerrorString();
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
// Wrapper function to get GetLastError() string.
|
|
|
|
// This function might change the error code.
|
|
|
|
std::string GetLastErrorString();
|
|
|
|
#endif
|