mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 13:14:59 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
18
CPP/Windows/ResourceString.h
Executable file → Normal file
18
CPP/Windows/ResourceString.h
Executable file → Normal file
@@ -1,21 +1,15 @@
|
||||
// Windows/ResourceString.h
|
||||
|
||||
#ifndef __WINDOWS_RESOURCESTRING_H
|
||||
#define __WINDOWS_RESOURCESTRING_H
|
||||
#ifndef __WINDOWS_RESOURCE_STRING_H
|
||||
#define __WINDOWS_RESOURCE_STRING_H
|
||||
|
||||
#include "Common/MyString.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
|
||||
UString MyLoadString(UINT resourceID);
|
||||
void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
|
||||
void MyLoadString(UINT resourceID, UString &dest);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user