You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
346 B
17 lines
346 B
// 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
|