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