2014-12-17 05:38:14 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
2013-09-05 00:17:46 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2015-06-21 12:12:49 +00:00
|
|
|
#include <cstddef>
|
2013-09-09 00:41:23 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2015-05-06 07:06:12 +00:00
|
|
|
#else
|
2015-06-21 12:12:49 +00:00
|
|
|
#include <cerrno>
|
|
|
|
#include <cstring>
|
2013-09-09 00:41:23 +00:00
|
|
|
#endif
|
|
|
|
|
2013-09-05 00:17:46 +00:00
|
|
|
// Neither Android nor OS X support TLS
|
2016-09-18 00:38:01 +00:00
|
|
|
#if defined(__APPLE__) || (ANDROID && __clang__)
|
2013-09-05 00:17:46 +00:00
|
|
|
#define __thread
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Generic function to get last error message.
|
|
|
|
// Call directly after the command or use the error num.
|
|
|
|
// This function might change the error code.
|
2016-09-18 00:38:01 +00:00
|
|
|
const char* GetLastErrorMsg() {
|
2014-04-01 22:20:08 +00:00
|
|
|
static const size_t buff_size = 255;
|
2013-09-09 00:41:23 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
2014-04-01 22:20:08 +00:00
|
|
|
static __declspec(thread) char err_str[buff_size] = {};
|
2013-09-09 00:41:23 +00:00
|
|
|
|
2014-12-03 18:57:57 +00:00
|
|
|
FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, nullptr, GetLastError(),
|
2016-09-18 00:38:01 +00:00
|
|
|
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), err_str, buff_size, nullptr);
|
2013-09-09 00:41:23 +00:00
|
|
|
#else
|
2014-04-01 22:20:08 +00:00
|
|
|
static __thread char err_str[buff_size] = {};
|
2013-09-09 00:41:23 +00:00
|
|
|
|
2014-04-01 22:20:08 +00:00
|
|
|
// Thread safe (XSI-compliant)
|
|
|
|
strerror_r(errno, err_str, buff_size);
|
2013-09-09 00:41:23 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-01 22:20:08 +00:00
|
|
|
return err_str;
|
2013-09-09 00:41:23 +00:00
|
|
|
}
|