// ScanKernalModule.cpp : Defines the initialization routines for the DLL. // #include "stdafx.h" #include "ScanKernalModule.h" #include "ModuleKernal.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // // Note! // // If this DLL is dynamically linked against the MFC // DLLs, any functions exported from this DLL which // call into MFC must have the AFX_MANAGE_STATE macro // added at the very beginning of the function. // // For example: // // extern "C" BOOL PASCAL EXPORT ExportedFunction() // { // AFX_MANAGE_STATE(AfxGetStaticModuleState()); // // normal function body here // } // // It is very important that this macro appear in each // function, prior to any calls into MFC. This means that // it must appear as the first statement within the // function, even before any object variable declarations // as their constructors may generate calls into the MFC // DLL. // // Please see MFC Technical Notes 33 and 58 for additional // details. // ///////////////////////////////////////////////////////////////////////////// // CScanKernalModuleApp BEGIN_MESSAGE_MAP(CScanKernalModuleApp, CWinApp) //{{AFX_MSG_MAP(CScanKernalModuleApp) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CScanKernalModuleApp construction CScanKernalModuleApp::CScanKernalModuleApp() { // TODO: add construction code here, // Place all significant initialization in InitInstance } ///////////////////////////////////////////////////////////////////////////// // The one and only CScanKernalModuleApp object CScanKernalModuleApp theApp; //當Module被Load時被呼叫 extern "C" __declspec(dllexport) int (__stdcall Init)(int nID, DWORD dwParam, CBPublish procCBPublish, CBWriteLog procWriteLog) { AFX_MANAGE_STATE(AfxGetStaticModuleState()); return DoInit(nID, dwParam, procCBPublish, procWriteLog); } //當MainProgram通知系統開始服務時被呼叫 extern "C" __declspec(dllexport) int (__stdcall Start)() { AFX_MANAGE_STATE(AfxGetStaticModuleState()); return DoStart(); } //當MainProgram通知系統停止服務時被呼叫,此時只應該暫停,因為稍後可能會在Start extern "C" __declspec(dllexport) void (__stdcall Stop)() { AFX_MANAGE_STATE(AfxGetStaticModuleState()); DoStop(); } //當MainProgram通知系統終止時被呼叫。 extern "C" __declspec(dllexport) void (__stdcall Finalize)() { AFX_MANAGE_STATE(AfxGetStaticModuleState()); DoFinalize(); } //當MainProgram通知系統重新讀取設定時被呼叫。 extern "C" __declspec(dllexport) void (__stdcall Refresh)() { AFX_MANAGE_STATE(AfxGetStaticModuleState()); DoRefresh(); } //MainProgram通知有訊息需要被處理 extern "C" __declspec(dllexport) void (__stdcall ProcessMsg)(char *strTagPath, MessageObject *lpMsgObj) { AFX_MANAGE_STATE(AfxGetStaticModuleState()); DoProcessMsg(strTagPath, lpMsgObj); }