This commit is contained in:
2013-07-20 23:23:04 +00:00
parent 9302620d39
commit bfb69b3898

11
HookMsg/EventHandler.cpp Normal file
View File

@@ -0,0 +1,11 @@
// EventHandler.cpp
#include "stdafx.h"
#include "EventHandler.h"
void __stdcall CEventHandler::Received()
{
ASSERT(NULL != m_pIEventHandler);
m_pIEventHandler->Received();
}