spicetools/util/resutils.h
2022-12-16 23:18:35 +09:00

12 lines
279 B
C++

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