citra/src/common/misc.cpp

32 lines
875 B
C++
Raw Normal View History

2014-12-17 06:38:14 +01:00
// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstddef>
2013-09-09 02:41:23 +02:00
#ifdef _WIN32
2018-07-30 14:50:23 +02:00
#include <windows.h>
2015-05-06 09:06:12 +02:00
#else
#include <cerrno>
#include <cstring>
2013-09-09 02:41:23 +02:00
#endif
#include "common/common_funcs.h"
// Generic function to get last error message.
// Call directly after the command or use the error num.
// This function might change the error code.
std::string GetLastErrorMsg() {
static const std::size_t buff_size = 255;
char err_str[buff_size];
2013-09-09 02:41:23 +02:00
#ifdef _WIN32
2014-12-03 19:57:57 +01:00
FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, nullptr, GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), err_str, buff_size, nullptr);
2013-09-09 02:41:23 +02:00
#else
2014-04-02 00:20:08 +02:00
// Thread safe (XSI-compliant)
strerror_r(errno, err_str, buff_size);
2013-09-09 02:41:23 +02:00
#endif
return std::string(err_str, buff_size);
2013-09-09 02:41:23 +02:00
}