There was an error while loading. Please reload this page.
Pointer to function called once for each function enumerated by DetourEnumerateImports.
DetourEnumerateImports
BOOL ImportFuncCallback( _In_opt_ PVOID pContext, _In_ ULONG nOrdinal, _In_opt_ PCSTR pszName, _In_opt_ PVOID pvFunc );
pContext : Unmodified program specific context pointer passed as pContext argument to DetourEnumerateImports.
pContext
nOrdinal : Ordinal of imported function. 0 if the import is by name.
0
pszName : Name of imported function. NULL if the import is by ordinal.
NULL
pvFunc : Pointer to code implementing the function (or less commonly, data). NULL if the end of the module.
TRUE to continue enumeration of import functions or FALSE to abort enumeration.
TRUE
FALSE