mirror of https://github.com/Cisco-Talos/clamav
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
344 B
22 lines
344 B
#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
|
|
|
|
|