void TSysConsoleNotify::OnStatus(const TStr& MsgStr){ SysConsole->Put(MsgStr.CStr()); // print '\n' if message not overlayed if ((!MsgStr.Empty())&&(MsgStr.LastCh()!='\r')){ SysConsole->PutLn(""); } }
void TStdErrNotify::OnStatus(const TStr& MsgStr){ fprintf(stderr, "%s", MsgStr.CStr()); // print '\n' if message not overlayed if ((!MsgStr.Empty())&&(MsgStr.LastCh()!='\r')){ fprintf(stderr, "\n");} }