TranslateAddressProc64 Callback Function

Debug Help Library

TranslateAddressProc64 Callback Function

An application-defined callback function used with the StackWalk64 function. It provides address translation for 16-bit addresses.

The PTRANSLATE_ADDRESS_ROUTINE64 type defines a pointer to this callback function. TranslateAddressProc64 is a placeholder for the application-defined function name.

DWORD64 CALLBACK TranslateAddressProc64(
  [in]                 HANDLE hProcess,
  [in]                 HANDLE hThread,
  [in]                 LPADDRESS64 lpaddr
);

Parameters

hProcess

A handle to the process for which the stack trace is generated.

hThread

A handle to the thread for which the stack trace is generated.

lpaddr

An address to be translated.

Return Value

The function returns the translated address.

Requirements

Redistributable

Requires DbgHelp.dll 5.1 or later.

Header

Declared in DbgHelp.h.

See Also

DbgHelp FunctionsStackWalk64


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.