SymCompareInlineTrace function (dbghelp.h)
Compares two inline traces.
C++
DWORD IMAGEAPI SymCompareInlineTrace(
[in] HANDLE hProcess,
[in] DWORD64 Address1,
[in] DWORD InlineContext1,
[in] DWORD64 RetAddress1,
[in] DWORD64 Address2,
[in] DWORD64 RetAddress2
);
[in] hProcess
A handle to a process. This handle must have been previously passed to the SymInitialize function.
[in] Address1
The first address to be compared.
[in] InlineContext1
The inline context for the first trace to be compared.
[in] RetAddress1
The return address of the first trace to be compared.
[in] Address2
The second address to be compared.
[in] RetAddress2
The return address of the second trace to be compared.
Indicates the result of the comparison.
Return code/value | Description |
---|---|
|
An error occurred. |
|
The inline contexts are identical. |
|
The inline trace is a step-in of an inline function. |
|
The inline trace is a step-out of an inline function. |
|
The inline trace is a step-over of an inline function. |
|
The inline contexts are different. |
Requirement | Value |
---|---|
Target Platform | Windows |
Header | dbghelp.h |
Library | DbgHelp.lib |
DLL | DbgHelp.dll |
Redistributable | DbgHelp.dll 6.2 or later |