7zip/CPP/Windows/ResourceString.h

18 lines
377 B
C
Raw Normal View History

2021-12-27 01:00:00 +01:00
// Windows/ResourceString.h
2023-06-21 02:00:00 +02:00
#ifndef ZIP7_INC_WINDOWS_RESOURCE_STRING_H
#define ZIP7_INC_WINDOWS_RESOURCE_STRING_H
2021-12-27 01:00:00 +01:00
#include "../Common/MyString.h"
2023-06-21 02:00:00 +02:00
#include "../Common/MyWindows.h"
2021-12-27 01:00:00 +01:00
namespace NWindows {
UString MyLoadString(UINT resourceID);
void MyLoadString(HINSTANCE hInstance, UINT resourceID, UString &dest);
void MyLoadString(UINT resourceID, UString &dest);
}
#endif