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