mirror of
https://github.com/spicetools/spicetools.git
synced 2026-04-13 13:16:05 -05:00
12 lines
279 B
C++
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);
|
|
}
|