blob: 602541f41c0b31a413c9c9689db3b1abac78b32b (
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
|
#pragma once
#include "error.hpp"
#include <cstddef>
#include <string>
namespace resource
{
HMODULE load_exe_module()
{
const auto module = GetModuleHandle(NULL);
if (module == NULL)
error::raise("GetModuleHandle");
return module;
}
std::wstring load_string(unsigned int id)
{
wchar_t* s = nullptr;
const auto ret = LoadStringW(
load_exe_module(), id, reinterpret_cast<wchar_t*>(&s), 0);
if (ret <= 0)
error::raise("LoadStringW");
return {s, static_cast<std::size_t>(ret)};
}
}
|