mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
23 lines
594 B
C++
Executable File
23 lines
594 B
C++
Executable File
// Windows/ResourceString.h
|
|
|
|
#ifndef __WINDOWS_RESOURCESTRING_H
|
|
#define __WINDOWS_RESOURCESTRING_H
|
|
|
|
#include "Common/String.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
|