GetModuleHandle“找不到指定的模块”

想使用GetModuleHandle来得到HMODULE却发现GetLastError总是显示“找不到指定的模块”。看了msdn才知道:GetModuleHandle只能得到已经加载到当前进程的内存中的Module,所以还是使用LoadLibrary吧
我错了~+_+
msdn上的相关说明:
The GetModuleHandle function retrieves a module handle for the specified module if the file has been mapped into the address space of the calling process.


The LoadLibrary function maps the specified executable module into the address space of the calling process. 

你可能感兴趣的:(啊我错了)