OnTopReplica/OnTopReplica/IMessagePumpProcessor.cs
2013-05-03 18:16:42 +02:00

16 lines
282 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace OnTopReplica {
interface IMessagePumpProcessor : IDisposable {
void Initialize(MainForm form);
bool Process(ref Message msg);
}
}