aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/ResourceString.h
blob: f0bdabf47fe37d6447091118845b7c97681b5637 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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