Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
761 B

#include "stdafx.h"
#include "resource.h"
#include <initguid.h>
#include "common.h"
#include "iisdebug.h"
CComModule _Module;
BEGIN_OBJECT_MAP(ObjectMap)
END_OBJECT_MAP()
/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point
extern "C"
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
lpReserved;
if (dwReason == DLL_PROCESS_ATTACH)
{
_Module.Init(ObjectMap, hInstance);
DisableThreadLibraryCalls(hInstance);
InitErrorFunctionality();
GetOutputDebugFlag();
}
else if (dwReason == DLL_PROCESS_DETACH)
{
TerminateErrorFunctionality();
_Module.Term();
}
return TRUE; // ok
}