• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Windows/ResourceString.h
2 
3 #ifndef ZIP7_INC_WINDOWS_RESOURCE_STRING_H
4 #define ZIP7_INC_WINDOWS_RESOURCE_STRING_H
5 
6 #include "../Common/MyString.h"
7 #include "../Common/MyWindows.h"
8 
9 namespace NWindows {
10 
11 UString MyLoadString(UINT resourceID);
12 void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
13 void MyLoadString(UINT resourceID, UString &dest);
14 
15 }
16 
17 #endif
18