Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.28 KB

invocation-version-data-struct.md

File metadata and controls

40 lines (30 loc) · 1.28 KB
title description ms.date helpviewer_keywords
INVOCATION_VERSION_DATA structure
The C++ Build Insights SDK INVOCATION_VERSION_DATA structure reference.
02/12/2020
C++ Build Insights
C++ Build Insights SDK
INVOCATION_VERSION_DATA
throughput analysis
build time analysis
vcperf.exe

INVOCATION_VERSION_DATA structure

::: moniker range="<=msvc-140"

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.

::: moniker-end ::: moniker range=">=msvc-150"

The INVOCATION_VERSION_DATA structure describes a version number as a group of integral values.

Syntax

typedef struct INVOCATION_VERSION_DATA_TAG
{
    unsigned short VersionMajor;
    unsigned short VersionMinor;
    unsigned short BuildNumberMajor;
    unsigned short BuildNumberMinor;

} INVOCATION_VERSION_DATA;

Members

Name Description
VersionMajor The version's major number.
VersionMinor The version's minor number.
BuildNumberMajor The build's major number.
BuildNumberMinor The build's minor number.

::: moniker-end