IDiaSymbol::get_frontEndMinor
Applies to: Visual Studio Visual Studio for Mac
Note
This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
Retrieves the front end minor version number.
Syntax
HRESULT get_frontEndMinor (
DWORD* pRetVal
);
Parameters
pRetVal
[out] Returns the front.end minor version number.
Return Value
If successful, returns S_OK
; otherwise, returns S_FALSE
or error code.
Note
A return value of S_FALSE
means the property is not available for the symbol.
Remarks
A compiler is typically composed of two primary elements: the front end (the parser), which handles parsing the source code into an intermediate form, and a back end (code generator), which converts the intermediate form into assembly. It is not uncommon for the front end to have a different version than the back end.
A front end or back end version number is composed of three parts: <major>.<minor>.<build>, where <major> is the major version number, <minor> is the minor version number, and <build> is the build number. For example, 13.10.3077.
Requirements
Requirement | Description |
---|---|
Header: | dia2.h |
Version: | DIA SDK v7.0 |