danicoin/src/Platform/Windows/System/ErrorMessage.cpp

46 lines
1.4 KiB
C++
Raw Normal View History

2015-08-05 13:09:05 +00:00
// Copyright (c) 2012-2015, The CryptoNote developers, The Bytecoin developers
//
// This file is part of Bytecoin.
//
// Bytecoin is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Bytecoin is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with Bytecoin. If not, see <http://www.gnu.org/licenses/>.
#include "ErrorMessage.h"
#include <cstddef>
#include <windows.h>
namespace System {
std::string lastErrorMessage() {
return errorMessage(GetLastError());
}
std::string errorMessage(int error) {
struct Buffer {
~Buffer() {
if (pointer != nullptr) {
LocalFree(pointer);
}
}
LPTSTR pointer = nullptr;
} buffer;
auto size = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_ALLOCATE_BUFFER, nullptr, error,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), reinterpret_cast<LPTSTR>(&buffer.pointer), 0, nullptr);
return "result=" + std::to_string(error) + ", " + std::string(buffer.pointer, size);
}
}