Skip to content

DetourEnumerateExportCallback

Brian Gianforcaro edited this page Aug 22, 2020 · 4 revisions

PF_DETOUR_ENUMERATE_EXPORT_CALLBACK

Pointer to function called once for each export enumerated by DetourEnumerateExports.

Definition

BOOL EnumerateExportCallback(
    _In_opt_ PVOID pContext,
    _In_     ULONG nOrdinal,
    _In_opt_ LPCSTR pszName,
    _In_opt_ PVOID pCode
);

Parameters

pContext : Unmodified program specific context pointer passed as pContext argument to DetourEnumerateExports.

nOrdinal : Ordinal of export function.

pszName : Name of export function.

pCode : Pointer to code implementing the function.

Return value

TRUE to continue enumeration of export symbols or FALSE to abort enumeration.

Clone this wiki locally