RELOG_RETENTION_SYSTEM_EVENT_FLAGS constants

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 RELOG_RETENTION_SYSTEM_EVENT_FLAGS constants are used to describe which system events to keep in a relogged trace. Use them to initialize the RELOG_DESCRIPTOR structure's SystemEventsRetentionFlags field.

Syntax

static const unsigned long long
    RELOG_RETENTION_SYSTEM_EVENT_FLAGS_CPU_SAMPLES = 0x1ULL;

static const unsigned long long
    RELOG_RETENTION_SYSTEM_EVENT_FLAGS_ALL         = 0xFFFFFFFFFFFFFFFFULL;

Members

Name Description
RELOG_RETENTION_SYSTEM_EVENT_FLAGS_CPU_SAMPLES Keep CPU sample system events in a relogged trace.
RELOG_RETENTION_SYSTEM_EVENT_FLAGS_ALL Keep all system events in a relogged trace.

Remarks