Ejemplo n.º 1
0
 // add new entry line to output windows
 void AddLine(string _Text, string _Stack, LineType _Type)
 {
     Cmd.AddLine(_Text, _Stack, _Type);
     Log.AddLine(_Text, _Stack, _Type);
 }
Ejemplo n.º 2
0
 // callback to notify console about new log message
 void HandleLog(string message, string stackTrace, LogType type)
 {
     Log.AddLine(message, stackTrace, type);
 }