SymFunctionTableAccess64 Function

Debug Help Library

SymFunctionTableAccess64 Function

Retrieves the function table entry for the specified address.

This function supersedes the SymFunctionTableAccess function. For more information, see Updated Platform Support.

PVOID WINAPI SymFunctionTableAccess64(
  __in          HANDLE hProcess,
  __in          DWORD64 AddrBase
);

Parameters

hProcess

A handle to the process that was originally passed to the SymInitialize function.

AddrBase

The base address for which function table information is required.

Return Value

If the function succeeds, the return value is a pointer to the function table entry.

If the function fails, the return value is NULL. To retrieve extended error information, call GetLastError.

Remarks

The type of pointer returned is specific to the image from which symbols are loaded.

x86:  If the image is for an x86 system, this is a pointer to an FPO_DATA structure.
x64:  If the image is for an x64 system, this is a pointer to an _IMAGE_RUNTIME_FUNCTION_ENTRY structure.
RISC:  If the image is for any of the RISC platforms, this is a pointer to an IMAGE_FUNCTION_ENTRY structure.

All DbgHelp functions, such as this one, are single threaded. Therefore, calls from more than one thread to this function will likely result in unexpected behavior or memory corruption. To avoid this, you must synchronize all concurrent calls from more than one thread to this function.

Requirements

Redistributable

Requires DbgHelp.dll 5.1 or later.

Header

Declared in Dbghelp.h.

Library

Use Dbghelp.lib.

DLL

Requires Dbghelp.dll.

See Also

DbgHelp FunctionsFPO_DATA
IMAGE_FUNCTION_ENTRY
_IMAGE_RUNTIME_FUNCTION_ENTRY
SymInitialize


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.