12 lines
289 B
C
12 lines
289 B
C
|
#pragma once
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <string>
|
||
|
|
||
|
namespace resutil {
|
||
|
|
||
|
const char* load_file(int name, DWORD* size, LPCSTR type=RT_RCDATA);
|
||
|
std::string load_file_string(int name, LPCSTR type=RT_RCDATA);
|
||
|
std::string load_file_string_crlf(int name, LPCSTR type=RT_RCDATA);
|
||
|
}
|