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.
 
 
 
 
 
 

34 lines
785 B

#include <windows.h>
#include <delayimp.h>
////////////////////////////////////////////////////////////////////////////////
static HRESULT WINAPI hook_HRESULT()
{
return HRESULT_FROM_WIN32( ERROR_PROC_NOT_FOUND );
}
static VOID* WINAPI hook_NULL()
{
SetLastError( ERROR_PROC_NOT_FOUND );
return NULL;
}
////////////////////////////////////////////////////////////////////////////////
FARPROC WINAPI HELPHOST_DelayLoadFailureHook( UINT unReason, PDelayLoadInfo pDelayInfo )
{
if(!lstrcmpiA( pDelayInfo->szDll, "shell32.dll" ))
{
return (FARPROC)hook_HRESULT;
}
// WININET.dll
// URLMON.dll
return (FARPROC)hook_NULL; // Also covers hook_ZERO and hook_FALSE.
}
// we assume DELAYLOAD_VERSION >= 0x0200
PfnDliHook __pfnDliFailureHook2 = HELPHOST_DelayLoadFailureHook;