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

ResourceString.h « Windows - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a74f925ddeff8e07a39c20bf57035c8cd89e5555 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Windows/ResourceString.h

#ifndef __WINDOWS_RESOURCESTRING_H
#define __WINDOWS_RESOURCESTRING_H

#include "Common/String.h"

namespace NWindows {

CSysString MyLoadString(UINT resourceID);
#ifdef _UNICODE
inline UString MyLoadStringW(UINT resourceID)
  { return MyLoadString(resourceID); }
#else
UString MyLoadStringW(UINT resourceID);
#endif

}

#endif