通过基地址的模块句柄

发布于 2024-12-04 20:20:24 字数 133 浏览 2 评论 0原文

我试图在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一枫情书 2024-12-11 20:20:24

您是否尝试过使用 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)?

姐不稀罕 2024-12-11 20:20:24

如果您使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文