2011-07-06 24 views
0

在通過C/C++的Windows,第IV部分,第22章 - 使用遠程線程注入Dll的書中。使用遠程線程的Freelibrary

在功能BOOL WINAPI EjectLibW(DWORD dwProcessId, PCWSTR pszLibFile),代碼:

hThread = CreateRemoteThread(hProcess, NULL, 0, 
     pfnThreadRtn, me.modBaseAddr, 0, NULL); 

我的問題:爲什麼 第五屆param不是me.hModuleFreelibraryfunc需要paramhModule

回答