OnTopReplica/OnTopReplica/IMessagePumpProcessor.cs

16 lines
282 B
C#
Raw Normal View History

2013-05-04 04:16:42 +12:00
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);
}
}