共用方式為


getModuleInformation 函式 (psapi.h)

擷取 MODULEINFO 結構中指定模組的相關信息。

語法

BOOL GetModuleInformation(
  [in]  HANDLE       hProcess,
  [in]  HMODULE      hModule,
  [out] LPMODULEINFO lpmodinfo,
  [in]  DWORD        cb
);

參數

[in] hProcess

包含模組之進程的句柄。

句柄必須具有 PROCESS_QUERY_INFORMATIONPROCESS_VM_READ 訪問許可權。 如需詳細資訊,請參閱 處理安全性和訪問許可權

[in] hModule

模組的句柄。

[out] lpmodinfo

MODULEINFO 結構的指標,可接收模組的相關信息。

[in] cb

MODULEINFO 結構的大小,以位元組為單位。

傳回值

如果函式成功,則傳回非零的值。

如果此函式失敗,則傳回值為零。 若要取得擴充的錯誤資訊,請呼叫 GetLastError

備註

若要取得呼叫進程的資訊,請傳遞 GetCurrentProcess 傳回的句柄。

GetModuleInformation 函式不會擷取以 LOAD_LIBRARY_AS_DATAFILE 旗標載入的模組資訊。 如需詳細資訊,請參閱 LoadLibraryEx

從 Windows 7 和 Windows Server 2008 R2 開始,Psapi.h 會建立 PSAPI 函式的版本號碼。 PSAPI 版本號碼會影響用來呼叫函式的名稱,以及程式必須載入的連結庫。

如果 PSAPI_VERSION 為 2 或更新版本,此函式會在 Psapi.h 中定義為 K32GetModuleInformation, 並在 Kernel32.lib 和 Kernel32.dll 中導出。 如果 PSAPI_VERSION 為 1,此函式會在 Psapi.h 中定義為 K32GetModuleInformation,並在 Psapi.lib 中導出,並 Psapi.dll 為呼叫 K32GetModuleInformation 的包裝函式。

必須在舊版 Windows 和 Windows 7 和更新版本上執行的程式應該一律將此函式呼叫為 K32GetModuleInformation。 若要確保符號的正確解析度,請將 Psapi.lib 新增至 TARGETLIBS 宏,並使用 -DPSAPI_VERSION=1 編譯程式。 若要使用運行時間動態連結,請載入 Psapi.dll。

規格需求

需求
最低支援的用戶端 Windows XP [傳統型應用程式 |UWP 應用程式]
最低支援的伺服器 Windows Server 2003 [傳統型應用程式 |UWP 應用程式]
目標平台 Windows
標頭 psapi.h
程式庫 Windows 7 和 Windows Server 2008 R2 上的 Kernel32.lib;如果 Windows 7 和 Windows Server 2008 R2 上的 PSAPI_VERSION=1) ,Psapi.lib (;Windows Server 2008、Windows Vista、Windows Server 2003 和 Windows XP 上的 Psapi.lib
Dll Windows 7 和 Windows Server 2008 R2 上的 Kernel32.dll;如果 windows 7 和 Windows Server 2008 R2 上的 PSAPI_VERSION=1) ,則為 Psapi.dll (;Windows Server 2008、Windows Vista、Windows Server 2003 和 Windows XP 上的 Psapi.dll

另請參閱

EnumProcesses

MODULEINFO

模組資訊

PSAPI 函式