Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ResourceString.h « Windows « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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