GetModuleInformation function kernel32
Retrieves information about the specified module in the MODULEINFO structure.
BOOL K32GetModuleInformation(
[in] HANDLE hProcess,
[in] HMODULE hModule,
[out] LPMODULEINFO lpmodinfo,
[in] DWORD cb
);
Implementation
int GetModuleInformation(
int hProcess,
int hModule,
Pointer<MODULEINFO> lpmodinfo,
int cb,
) => _K32GetModuleInformation(hProcess, hModule, lpmodinfo, cb);