spicetools/util/resutils.h

12 lines
289 B
C
Raw Normal View History

2024-08-28 15:10:34 +00:00
#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);
}