mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
d7b2077ed8
- made more and more easily extensible: * commands automatically loaded from plugins dlls * declarative and automatic command parameter parsing * common code moved to base classes - other fixes svn path=/trunk/; revision=33344
9 lines
166 B
C#
9 lines
166 B
C#
using System;
|
|
|
|
namespace TechBot.Library
|
|
{
|
|
public interface IServiceOutput
|
|
{
|
|
void WriteLine(MessageContext context, string message);
|
|
}
|
|
}
|