void CCdBlkCfg::SetError(USHORT Error, LPCSTR Fmt, ...) { m_State.m_nError=Error; if (Error) { char Buff[2048]; va_list argptr; va_start(argptr, Fmt); vsprintf(Buff, Fmt, argptr); va_end(argptr); ReportError(m_sTag, 0, "%s: %s", SErr_String(Error), Buff); } };
void CCdBlkCfg::SetError(USHORT Error) { m_State.m_nError=Error; if (Error) ReportError(m_sTag, 0, "%s", SErr_String(Error)); };
void CLinkCfg::SetError(USHORT Error, bool LogIt) { m_State.m_nError=Error; if (Error && LogIt) ReportError(m_sTag, 0, "%s", SErr_String(Error)); };