citra/src/common/misc.cpp

32 lines
870 B
C++
Raw Normal View History

2014-12-17 11:08:14 +05:30
// 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 06:11:23 +05:30
#ifdef _WIN32
2018-07-30 18:20:23 +05:30
#include <windows.h>
2015-05-06 12:36:12 +05:30
#else
#include <cerrno>
#include <cstring>
2013-09-09 06:11:23 +05:30
#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() {
2014-04-02 03:50:08 +05:30
static const size_t buff_size = 255;
char err_str[buff_size];
2013-09-09 06:11:23 +05:30
#ifdef _WIN32
2014-12-04 00:27:57 +05:30
FormatMessageA(FORMAT_MESSAGE_FROM_SYSTEM, nullptr, GetLastError(),
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), err_str, buff_size, nullptr);
2013-09-09 06:11:23 +05:30
#else
2014-04-02 03:50:08 +05:30
// Thread safe (XSI-compliant)
strerror_r(errno, err_str, buff_size);
2013-09-09 06:11:23 +05:30
#endif
return std::string(err_str, buff_size);
2013-09-09 06:11:23 +05:30
}