11 lines
191 B
C++
11 lines
191 B
C++
#include "common/commands.h"
|
|
|
|
class IOCPBase
|
|
{
|
|
public:
|
|
virtual BOOL IsRunning() const = 0;
|
|
virtual VOID RunEventLoop(const BOOL& bCondition) = 0;
|
|
};
|
|
|
|
typedef BOOL(*TrailCheck)(void);
|