blob: edce89f4f5d102613d4c6c7a1ae605283aeb26b9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// Copyright (c) 2016 Egor Tensin <Egor.Tensin@gmail.com>
// This file is part of the "Privilege check" project.
// For details, see https://github.com/egor-tensin/privilege-check.
// Distributed under the MIT License.
#include "error.hpp"
#include <Windows.h>
#include <exception>
#include <system_error>
namespace error
{
Error make(const char* function_name)
{
const auto ec = GetLastError();
return {static_cast<int>(ec), std::system_category(), function_name};
}
void raise(const char* function_name)
{
throw make(function_name);
}
void report(const std::exception& e)
{
MessageBoxA(NULL, e.what(), NULL, MB_OK);
}
int get_code(const Error& e)
{
return e.code().value();
}
}
|