Dactyloidae/other-licenses/7zstub/src/Windows/ResourceString.h

20 lines
357 B
C++

// Windows/ResourceString.h
#ifndef __WINDOWS_RESOURCESTRING_H
#define __WINDOWS_RESOURCESTRING_H
#include "Common/String.h"
namespace NWindows {
CSysString MyLoadString(UINT resourceID);
#ifdef _UNICODE
inline UString MyLoadStringW(UINT resourceID)
{ return MyLoadString(resourceID); }
#else
UString MyLoadStringW(UINT resourceID);
#endif
}
#endif