-
Notifications
You must be signed in to change notification settings - Fork 1k
DetourEnumerateExportCallback
Brian Gianforcaro edited this page Aug 22, 2020
·
4 revisions
Pointer to function called once for each export enumerated by
DetourEnumerateExports
.
BOOL EnumerateExportCallback(
_In_opt_ PVOID pContext,
_In_ ULONG nOrdinal,
_In_opt_ LPCSTR pszName,
_In_opt_ PVOID pCode
);
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.
TRUE
to continue enumeration of export symbols or FALSE
to abort
enumeration.