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.
|
|
/*++
Copyright (c) 2000-2002 Microsoft Corporation
Module Name:
BackOffice45Suite.cpp
Abstract:
Ignore msvcrt!exit. No idea why it worked just fine in NT4.
Notes:
This is an app specific shim.
History:
02/16/2000 clupu Created 03/07/2002 robkenny Security changes
--*/
#include "precomp.h"
IMPLEMENT_SHIM_BEGIN(BackOffice45Suite) #include "ShimHookMacro.h"
APIHOOK_ENUM_BEGIN APIHOOK_ENUM_ENTRY(exit) APIHOOK_ENUM_END
/*++
Ignore msvcrt!exit
--*/
void APIHOOK(exit)( int /*status*/ ) { DPFN( eDbgLevelInfo, "BackOffice45Suite.dll, Ignoring msvcrt!exit..."); return; }
/*++
Register hooked functions
--*/
HOOK_BEGIN APIHOOK_ENTRY(MSVCRT.DLL, exit) HOOK_END
IMPLEMENT_SHIM_END
|