aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/ResourceString.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Windows/ResourceString.h')
-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..cbaef4b
--- /dev/null
+++ b/CPP/Windows/ResourceString.h
@@ -0,0 +1,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