登录 注册
当前位置:主页 > 资源下载 > 9 > HookLib下载

HookLib下载

  • 更新:2024-09-21 14:31:08
  • 大小:21KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:RAR

资源介绍

////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 ////