通过基地址的模块句柄
我试图在 Windows 上获取 C++ 模块的模块句柄。
我的问题是我只有模块的基址和文件句柄,但 GetModuleHandle 仅接收其名称作为参数。
Windows 上的 C++ 有没有办法在不知道模块名称的情况下获取模块句柄?
Im' trying to get the module handle of a module in C++ on windows.
My problem is that I have only the base address and File handle of the module but GetModuleHandle receives only its name as a parameter.
Is there a way in c++ on windows to obtain a module handle without knwoing the module's name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用
GetModuleHandleEx
(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT,(LPCTSTR)lpBaseAddress,&模块)
?Have you tried using
GetModuleHandleEx
(GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS | GET_MODULE_HANDLE_EX_FLAG_UNCHANGED_REFCOUNT, (LPCTSTR)lpBaseAddress, &module)
?如果您使用 WindowsXP 或更高版本,请使用 GetModuleHandleEx。对于以前的 Windows 版本(如 Windows2000),此功能不可用,但有替代解决方案,请查看本页底部的注释: http://msdn.microsoft.com/en-us/library/ms683200(v=VS.85).aspx
Use GetModuleHandleEx if you use WindowsXP or later. For previous Windows versions like Windows2000 this function is not available, but there is alternate solution, check comments at the bottom of this page: http://msdn.microsoft.com/en-us/library/ms683200(v=VS.85).aspx