ADTF  3.18.2
cExceptionHandler::IStackResolveCallbackabstract

Callback for resolved stack traces. More...

Public Member Functions

virtual tResult HandleFrame (tVoid *pAddress, const tChar *strModule, const tChar *strFunction, const tChar *strFile, tInt nLine)=0
 This will be called for each stack frame. More...
 

Detailed Description

Callback for resolved stack traces.

Definition at line 84 of file exceptionhandler.h.

Member Function Documentation

◆ HandleFrame()

virtual tResult HandleFrame ( tVoid pAddress,
const tChar strModule,
const tChar strFunction,
const tChar strFile,
tInt  nLine 
)
pure virtual

This will be called for each stack frame.

Parameters
[in]pAddressThe address.
[in]strModuleThe name of the module (executable/shared object).
[in]strFunctionThe name of the function.
[in]strFileThe source file.
[in]nLineThe line number within the source file.
Returns
This will be forwarded to the caller of cExceptionHandler::ResolveCallStack.