mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
23 lines
596 B
C++
Executable File
23 lines
596 B
C++
Executable File
// Windows/ResourceString.h
|
|
|
|
#ifndef __WINDOWS_RESOURCESTRING_H
|
|
#define __WINDOWS_RESOURCESTRING_H
|
|
|
|
#include "Common/MyString.h"
|
|
|
|
namespace NWindows {
|
|
|
|
CSysString MyLoadString(HINSTANCE hInstance, UINT resourceID);
|
|
CSysString MyLoadString(UINT resourceID);
|
|
#ifdef _UNICODE
|
|
inline UString MyLoadStringW(HINSTANCE hInstance, UINT resourceID) { return MyLoadString(hInstance, resourceID); }
|
|
inline UString MyLoadStringW(UINT resourceID) { return MyLoadString(resourceID); }
|
|
#else
|
|
UString MyLoadStringW(HINSTANCE hInstance, UINT resourceID);
|
|
UString MyLoadStringW(UINT resourceID);
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|