Clone
3
DetourGetContainingModule
Brian Gianforcaro edited this page 2020-08-21 18:17:51 -07:00

DetourGetContainingModule

Find the PE binary in a process containing a known function.

Definition

HMODULE DetourGetContainingModule(
    _In_ PVOID vpAddr
);

Parameters

pvAddr
Address of a function in the process.

Return value

Handle to the containing module or NULL if the address doesn't reside in a loaded PE binary.

Tryman