mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 16:07:09 -06:00
21 lines
357 B
C++
Executable File
21 lines
357 B
C++
Executable File
// 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
|