Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Compares two inline traces.
Syntax
DWORD IMAGEAPI SymCompareInlineTrace(
[in] HANDLE hProcess,
[in] DWORD64 Address1,
[in] DWORD InlineContext1,
[in] DWORD64 RetAddress1,
[in] DWORD64 Address2,
[in] DWORD64 RetAddress2
);
Parameters
[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.
Return value
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. |
Requirements
| Requirement | Value |
|---|---|
| Target Platform | Windows |
| Header | dbghelp.h |
| Library | DbgHelp.lib |
| DLL | DbgHelp.dll |
| Redistributable | DbgHelp.dll 6.2 or later |