blob: cbaef4bfb30cc6cb5676cfc1ee50bae6f063d22e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Windows/ResourceString.h
#ifndef __WINDOWS_RESOURCE_STRING_H
#define __WINDOWS_RESOURCE_STRING_H
#include "../Common/MyString.h"
namespace NWindows {
UString MyLoadString(UINT resourceID);
void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
void MyLoadString(UINT resourceID, UString &dest);
}
#endif
|