mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 01:15:00 -06:00
15 lines
224 B
C++
Executable File
15 lines
224 B
C++
Executable File
#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
|