TRACING_SESSION_OPTIONS structure

The C++ Build Insights SDK is compatible with Visual Studio 2017 and later. To see the documentation for these versions, set the Visual Studio Version selector control for this article to Visual Studio 2017 or later. It's found at the top of the table of contents on this page.

The TRACING_SESSION_OPTIONS structure is used when initializing an ANALYSIS_DESCRIPTOR or RELOG_DESCRIPTOR structure. It describes which events to capture during the collection of a trace.

Syntax

typedef struct TRACING_SESSION_OPTIONS_TAG
{
    unsigned long long SystemEventFlags;
    unsigned long long MsvcEventFlags;

} TRACING_SESSION_OPTIONS;

Members

Name Description
SystemEventFlags A bitmask describing the system events to capture. For more information, see TRACING_SESSION_SYSTEM_EVENT_FLAGS.
MsvcEventFlags A bitmask describing the MSVC events to capture. For more information, see TRACING_SESSION_MSVC_EVENT_FLAGS.