Ejemplo n.º 1
0
void FCompilerResultsLog::NoteVA(const TCHAR* Message, va_list ArgPtr)
{
	InternalLogMessage(EMessageSeverity::Info, Message, ArgPtr);
}
Ejemplo n.º 2
0
void FCompilerResultsLog::ErrorVA(const TCHAR* Message, va_list ArgPtr)
{
	++NumErrors;
	InternalLogMessage(EMessageSeverity::Error, Message, ArgPtr);
}
Ejemplo n.º 3
0
void FCompilerResultsLog::WarningVA(const TCHAR* Message, va_list ArgPtr)
{
	++NumWarnings;
	InternalLogMessage(EMessageSeverity::Warning, Message, ArgPtr);
}
Ejemplo n.º 4
0
// This will log a message. It will be associated with the current
// task. This version allows the inclusion of a help string so that
// the user can get more information about the message
bool CBackEndDialog::LogMessageH(EMsgType nStatus, const char* pszHelpMsg, const char* pszMsg)
{
	InternalLogMessage(nStatus, pszHelpMsg, pszMsg);
	return true;
}