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