40 lines
651 B
C++
40 lines
651 B
C++
|
// dllmain.cpp : DllMain <20><>ʵ<EFBFBD>֡<EFBFBD>
|
|||
|
|
|||
|
#include "stdafx.h"
|
|||
|
#include "resource.h"
|
|||
|
#include "MobsetWeb_i.h"
|
|||
|
#include "dllmain.h"
|
|||
|
#include "xdlldata.h"
|
|||
|
|
|||
|
CMobsetWebModule _AtlModule;
|
|||
|
|
|||
|
class CMobsetWebApp : public CWinApp
|
|||
|
{
|
|||
|
public:
|
|||
|
|
|||
|
// <20><>д
|
|||
|
virtual BOOL InitInstance();
|
|||
|
virtual int ExitInstance();
|
|||
|
|
|||
|
DECLARE_MESSAGE_MAP()
|
|||
|
};
|
|||
|
|
|||
|
BEGIN_MESSAGE_MAP(CMobsetWebApp, CWinApp)
|
|||
|
END_MESSAGE_MAP()
|
|||
|
|
|||
|
CMobsetWebApp theApp;
|
|||
|
|
|||
|
BOOL CMobsetWebApp::InitInstance()
|
|||
|
{
|
|||
|
#ifdef _MERGE_PROXYSTUB
|
|||
|
if (!PrxDllMain(m_hInstance, DLL_PROCESS_ATTACH, NULL))
|
|||
|
return FALSE;
|
|||
|
#endif
|
|||
|
return CWinApp::InitInstance();
|
|||
|
}
|
|||
|
|
|||
|
int CMobsetWebApp::ExitInstance()
|
|||
|
{
|
|||
|
return CWinApp::ExitInstance();
|
|||
|
}
|