OnTopReplica/src/OnTopReplica/IMessagePumpProcessor.cs

16 lines
267 B
C#
Raw Permalink Normal View History

2018-04-11 04:52:40 +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);
}
}