EVENT_COLLECTION_DATA 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 EVENT_COLLECTION_DATA structure describes an array of EVENT_DATA elements.

Syntax

typedef struct EVENT_COLLECTION_DATA_TAG
{
    unsigned int            Count;
    const EVENT_DATA*       Elements;

} EVENT_COLLECTION_DATA;

Members

Name Description
Count The number of EVENT_DATA elements in the array.
Elements Pointer to the first EVENT_DATA element in the array.