aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/ResourceString.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--CPP/Windows/ResourceString.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/CPP/Windows/ResourceString.h b/CPP/Windows/ResourceString.h
new file mode 100644
index 0000000..f0bdabf
--- /dev/null
+++ b/CPP/Windows/ResourceString.h
@@ -0,0 +1,16 @@
1// Windows/ResourceString.h
2
3#ifndef __WINDOWS_RESOURCE_STRING_H
4#define __WINDOWS_RESOURCE_STRING_H
5
6#include "../Common/MyString.h"
7
8namespace NWindows {
9
10UString MyLoadString(UINT resourceID);
11void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
12void MyLoadString(UINT resourceID, UString &dest);
13
14}
15
16#endif