FunctionTableAccessProc64 Callback Function
An application-defined callback function used with the StackWalk64 function. It provides access to the run-time function table for the process.
The PFUNCTION_TABLE_ACCESS_ROUTINE64 type defines a pointer to this callback function. FunctionTableAccessProc64 is a placeholder for the application-defined function name.
PVOID CALLBACK FunctionTableAccessProc64( [in] HANDLE hProcess, [in] DWORD64 AddrBase );
Parameters
- hProcess
-
A handle to the process for which the stack trace is generated.
- AddrBase
-
The address of the instruction to be located.
Return Value
The function returns a pointer to the run-time function table. On an x86 computer, this is a pointer to an FPO_DATA structure. On an Alpha computer, this is a pointer to an IMAGE_FUNCTION_ENTRY structure.
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
DbgHelp FunctionsFPO_DATA
IMAGE_FUNCTION_ENTRY
StackWalk64
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.