CL_PASS_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 CL_PASS_DATA structure describes a compilation pass.

Syntax

typedef struct CL_PASS_DATA_TAG
{
    int                         TranslationUnitPassCode;
    const wchar_t*              InputSourcePath;
    const wchar_t*              OutputObjectPath;

} CL_PASS_DATA;

Members

Name Description
TranslationUnitPassCode A code identifying the compilation pass being executed. For more information, see TRANSLATION_UNIT_PASS_CODE.
InputSourcePath The C or C++ source file on which this compilation pass is being executed.
OutputObjectPath The object file being produced by the compiler.