mirror of
https://github.com/ip7z/7zip.git
synced 2025-12-06 07:12:00 +01:00
17 lines
330 B
C
17 lines
330 B
C
|
|
// Windows/ResourceString.h
|
||
|
|
|
||
|
|
#ifndef __WINDOWS_RESOURCE_STRING_H
|
||
|
|
#define __WINDOWS_RESOURCE_STRING_H
|
||
|
|
|
||
|
|
#include "../Common/MyString.h"
|
||
|
|
|
||
|
|
namespace NWindows {
|
||
|
|
|
||
|
|
UString MyLoadString(UINT resourceID);
|
||
|
|
void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
|
||
|
|
void MyLoadString(UINT resourceID, UString &dest);
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif
|