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 9namespace NWindows { 10 11UString MyLoadString(UINT resourceID); 12void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest); 13void MyLoadString(UINT resourceID, UString &dest); 14 15} 16 17#endif 18