Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 win32 中,在某些情况下,我们需要一个模块句柄来执行某些操作。但我不知道究竟什么是模块。请帮帮我。
您的程序在程序加载时在操作系统创建的虚拟内存空间内执行。程序本身和加载在虚拟内存空间中的所有动态链接库称为模块。HMODULE 或 HINSTANCE 是加载特定模块的虚拟内存中的地址。您可以使用 GetModuleInstance() 或 LoadLibrary() API 调用来获取句柄。