Source code of Windows XP (NT5)
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.
|
|
/*++
Copyright (c) 1997 Microsoft Corporation
Module Name:
main.cxx
Abstract:
DLL startup routine.
Author:
Keith Moore (keithmo) 17-Feb-1997
Revision History:
--*/
extern "C" {
#include <nt.h>
#include <ntrtl.h>
#include <nturtl.h>
#include <windows.h>
#include <dbgutil.h>
} // extern "C"
#include <iisrsta.h>
//
// Private globals.
//
//DECLARE_DEBUG_PRINTS_OBJECT();
//
// Private prototypes.
//
//
// DLL Entrypoint.
//
extern "C" {
BOOL WINAPI DLLEntry( HINSTANCE hDll, DWORD dwReason, LPVOID lpReserved ) {
BOOL status = TRUE;
switch( dwReason ) {
case DLL_PROCESS_ATTACH : // CREATE_DEBUG_PRINT_OBJECT( "iisrstap" );
DisableThreadLibraryCalls( hDll ); break;
case DLL_PROCESS_DETACH : // DELETE_DEBUG_PRINT_OBJECT();
break;
}
return status;
} // DLLEntry
} // extern "C"
|