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

resource.hpp « Original « Rar29 « Compress « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 581b34b4260c5b4aa1684377650b8d5c5f23bdae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _RAR_RESOURCE_
#define _RAR_RESOURCE_

#if defined(SILENT) && defined(RARDLL)
#define St(x) ("")
#else
const char *St(MSGID StringId);
#endif


inline const char *StT(MSGID StringId) {return(St(StringId));}


#endif