// dllmain.cpp : DllMain µÄʵÏÖ¡£

#include "stdafx.h"
#include "resource.h"
#include "MobsetWeb_i.h"
#include "dllmain.h"
#include "xdlldata.h"

CMobsetWebModule _AtlModule;

class CMobsetWebApp : public CWinApp
{
public:

// ÖØÐ´
	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();
}