资源介绍
////Hooking the function
BOOL Initialize(PSTR pCalleeModule,PSTR pCalleeFunction,PROC HookFunction,TIsTargetModule pTargetModule);
////(input)pCalleeModule :the module where the original function exist;
////(input)pCalleeFunction :the original function you want to hook;
////(input)HookFunction :the hook function you programed and want to replace the original function;
////(input)pTargetModule :the function indicate that which module you want to hook
// if pTargetModule is set to NULL, it will hook all module except this lib itself
////Return Value
////return TRUE means a successful hooking , otherwise FALSE
////