[MetaHook] BaseUI hook
Hook IBaseUI function.
- #include <metahook.h>
- #include <IBaseUI.h>
- IBaseUI *g_pBaseUI = ;
- void (__fastcall *g_pfnCBaseUI_Initialize)(void *pthis, int edx, CreateInterfaceFn *factories, int count) = ;
- void (__fastcall *g_pfnCBaseUI_Start)(void *pthis, int edx, struct cl_enginefuncs_s *engineFuncs, int interfaceVersion) = ;
- void (__fastcall *g_pfnCBaseUI_Shutdown)(void *pthis, int edx) = ;
- int (__fastcall *g_pfnCBaseUI_Key_Event)(void *pthis, int edx, int down, int keynum, const char *pszCurrentBinding) = ;
- void (__fastcall *g_pfnCBaseUI_CallEngineSurfaceProc)(void *pthis, int edx, void *hwnd, unsigned int msg, unsigned int wparam, long lparam) = ;
- void (__fastcall *g_pfnCBaseUI_Paint)(void *pthis, int edx, int x, int y, int right, int bottom) = ;
- void (__fastcall *g_pfnCBaseUI_HideGameUI)(void *pthis, int edx) = ;
- void (__fastcall *g_pfnCBaseUI_ActivateGameUI)(void *pthis, int edx) = ;
- bool (__fastcall *g_pfnCBaseUI_IsGameUIVisible)(void *pthis, int edx) = ;
- void (__fastcall *g_pfnCBaseUI_HideConsole)(void *pthis, int edx) = ;
- void (__fastcall *g_pfnCBaseUI_ShowConsole)(void *pthis, int edx) = ;
- class CBaseUI : public IBaseUI
- {
- public:
- void Initialize(CreateInterfaceFn *factories, int count);
- void Start(struct cl_enginefuncs_s *engineFuncs, int interfaceVersion);
- void Shutdown(void);
- int Key_Event(int down, int keynum, const char *pszCurrentBinding);
- void CallEngineSurfaceProc(void *hwnd, unsigned int msg, unsigned int wparam, long lparam);
- void Paint(int x, int y, int right, int bottom);
- void HideGameUI(void);
- void ActivateGameUI(void);
- bool IsGameUIVisible(void);
- void HideConsole(void);
- void ShowConsole(void);
- };
- void CBaseUI::Initialize(CreateInterfaceFn *factories, int count)
- {
- return g_pfnCBaseUI_Initialize(this, , factories, count);
- }
- void CBaseUI::Start(struct cl_enginefuncs_s *engineFuncs, int interfaceVersion)
- {
- return g_pfnCBaseUI_Start(this, , engineFuncs, interfaceVersion);
- }
- void CBaseUI::Shutdown(void)
- {
- return g_pfnCBaseUI_Shutdown(this, );
- }
- int CBaseUI::Key_Event(int down, int keynum, const char *pszCurrentBinding)
- {
- return g_pfnCBaseUI_Key_Event(this, , down, keynum, pszCurrentBinding);
- }
- void CBaseUI::CallEngineSurfaceProc(void *hwnd, unsigned int msg, unsigned int wparam, long lparam)
- {
- return g_pfnCBaseUI_CallEngineSurfaceProc(this, , hwnd, msg, wparam, lparam);
- }
- void CBaseUI::Paint(int x, int y, int right, int bottom)
- {
- return g_pfnCBaseUI_Paint(this, , x, y, right, bottom);
- }
- void CBaseUI::HideGameUI(void)
- {
- return g_pfnCBaseUI_HideGameUI(this, );
- }
- void CBaseUI::ActivateGameUI(void)
- {
- return g_pfnCBaseUI_ActivateGameUI(this, );
- }
- bool CBaseUI::IsGameUIVisible(void)
- {
- return g_pfnCBaseUI_IsGameUIVisible(this, );
- }
- void CBaseUI::HideConsole(void)
- {
- return g_pfnCBaseUI_HideConsole(this, );
- }
- void CBaseUI::ShowConsole(void)
- {
- return g_pfnCBaseUI_ShowConsole(this, );
- }
- void BaseUI_InstallHook(void)
- {
- CreateInterfaceFn EngineCreateInterface = g_pMetaHookAPI->GetEngineFactory();
- g_pBaseUI = (IBaseUI *)EngineCreateInterface(BASEUI_INTERFACE_VERSION, );
- CBaseUI BaseUI;
- DWORD *pVFTable = *(DWORD **)&BaseUI;
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Initialize);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Start);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Shutdown);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Key_Event);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_CallEngineSurfaceProc);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_Paint);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_HideGameUI);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_ActivateGameUI);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[ ], (void *&)g_pfnCBaseUI_IsGameUIVisible);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[], (void *&)g_pfnCBaseUI_HideConsole);
- g_pMetaHookAPI->VFTHook(g_pBaseUI, , , (void *)pVFTable[], (void *&)g_pfnCBaseUI_ShowConsole);
- }
[MetaHook] BaseUI hook的更多相关文章
- [MetaHook] GameUI hook
Hook GameUI function. #include <metahook.h> #include <IGameUI.h> IGameUI *g_pGameUI = ; ...
- [MetaHook] Surface hook
Hook ISurface function. #include <metahook.h> #include <vgui/ISurface.h> using namespace ...
- [MetaHook] Event Hook
#include <metahook.h> struct event_hook_t { event_hook_t *next; char *name; void (*pfnEvent)(e ...
- [MetaHook] Load large texture from model
We need hook "GL_LoadTexture" engine function. GL_LOADTEXTURE_SIG from hw.dll(3266) engine ...
- svnserver hook python
在使用中可能会遇到的错误排除 :1.Error: svn: 解析"D:\www\test"出错,或svn: E020024: Error resolving case of 'D: ...
- Android Hook技术
原文:http://blog.csdn.net/u011068702/article/details/53208825 附:Android Hook 全面入侵监听器 第一步.先爆项目demo照片,代码 ...
- Frida HOOK微信实现骰子作弊
由于微信摇骰子的功能在本地进行随机后在发送,所以存在可以hook掉判断骰子数的方法进行修改作弊. 1.frida实现hook java层函数1)写个用来测试的demo,当我们点击按钮的时候会弹出窗口显 ...
- java的关闭钩子(Shutdown Hook)
Runtime.getRuntime().addShutdownHook(shutdownHook); 这个方法的含义说明: 这个方法的意思就是在jvm中增加一个关闭的钩子,当jv ...
- IDT HOOK思路整理
IDT(中断描述符表)分为IRQ(真正的硬件中断)和软件中断(又叫异常). HOOK的思路为,替换键盘中断处理的函数地址为自己的函数地址.这样在键盘驱动和过滤驱动之前就可以截获键盘输入. 思路确定之后 ...
随机推荐
- c#.net 使用NPOI导入导出标准Excel (asp.net winform csharp)
尝试过很多Excel导入导出方法,都不太理想,无意中逛到oschina时,发现了NPOI,无需Office COM组件且不依赖Office,顿时惊为天人,怀着无比激动的心情写下此文. 曾使用过的方法 ...
- js document.createElement()的用法 (转)
document.createElement()的用法 分析代码时,发现自己的盲点--document.createElement(),冲浪一番,总结了点经验. document.createElem ...
- .net开发windows服务小结
今天学习了在.net下创建一个windows服务,总结一下学习心得. 开发环境:visual studio 2012 一.编写程序 (1)创建一个空解决方法 (2)添加一个控制台应 ...
- DDL触发器的应用
一般来说,DML触发器可以监测得到具体对象的具体数据的变更.然而,DDL触发器则能够对一些服务器的行为作出监控,比如我们可以利用DDL触发器来做登录限制啊,做一些日志控制啊之类的. 好,然后简单粗暴上 ...
- MySQL用户无法登陆问题
安装完MySQL后,我们通常添加拥有相应权限的普通用户用来访问数据库.在使用普通用户(假设为tom)本地登录数据库的时候,经常会出现无法登录的情况,但是从其他的mysql客户端却可以登录.在本地使用t ...
- SQL Server 2008 R2——PIVOT 行转列 以及聚合函数的选择
==================================声明================================== 本文原创,转载在正文中显要的注明作者和出处,并保证文章的完 ...
- apache指定的网络名不再可用
如果Apache的error.log还是出现大量的:Sat Dec 24 17:21:28 2006] [warn] (OS 64)指定的网络名不再可 用. : winnt_accept: Async ...
- JQuery中的extend函数
1.jQuery.fn.extend(object) 扩展 jQuery 元素集来提供新的方法(通常用来制作插件). 例如:增加两个插件方法. jQuery.fn.extend({ check: fu ...
- Altium Designer 出现错误提示(警告)adding items to hidden net GND/VCC
一般出现这个提示,不是错误. 可以取消net 网格标号 这样就不会报这个警告了. 还可以设置规则,不让它报告. 点击确定,但是再次打开工程时有得警告这个错误了.我想,还是取消NET标注.
- proteus 运行出错,用户名不可使用中文!
仿真的时候提示如图提示 cannot open ’c\user\小名\AppData\local\temp\LISA0089.sdf’ 系统用户名不能是中文! 解决办法:重新建立个账户,记得用英文命名 ...