mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2025-10-19 18:33:16 +00:00

As with the previous libclamunrar commit, this update maintains the hack in dll.cpp:332 that allows skipping of files in solid archives.
22 lines
344 B
C++
22 lines
344 B
C++
#include "rar.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef RARDLL
|
|
const wchar* St(MSGID StringId)
|
|
{
|
|
return StringId;
|
|
}
|
|
|
|
|
|
// Needed for Unix swprintf to convert %s to %ls in legacy language resources.
|
|
const wchar *StF(MSGID StringId)
|
|
{
|
|
static wchar FormattedStr[512];
|
|
PrintfPrepareFmt(St(StringId),FormattedStr,ASIZE(FormattedStr));
|
|
return FormattedStr;
|
|
}
|
|
#endif
|
|
|