用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
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.

58 lines
1.1 KiB

10 months ago
#include "SevenZipException.h"
namespace SevenZip
{
TString StrFmt( const TCHAR* format, ... )
{
TString result;
TCHAR* buffer;
int sz;
va_list args;
va_start( args, format );
sz = _vsctprintf( format, args ) + 1;
buffer = new TCHAR[sz];
_vsntprintf_s( buffer, sz, _TRUNCATE, format, args );
result = buffer;
delete [] buffer;
va_end( args );
return result;
}
TString GetWinErrMsg( const TString& contextMessage, DWORD lastError )
{
// TODO: use FormatMessage to get the appropriate message from the
return StrFmt( _T( "%s: GetLastError = %lu" ), contextMessage.c_str(), lastError );
}
TString GetCOMErrMsg( const TString& contextMessage, HRESULT lastError )
{
// TODO: use FormatMessage to get the appropriate message from the
return StrFmt( _T( "%s: HRESULT = 0x%08X" ), contextMessage.c_str(), lastError );
}
SevenZipException::SevenZipException()
{
}
SevenZipException::SevenZipException( const TString& message )
: m_message( message )
{
}
SevenZipException::~SevenZipException()
{
}
const TString& SevenZipException::GetMessage() const
{
return m_message;
}
}