IDiaSymbol::get_symTag
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at IDiaSymbol::get_symTag.
Retrieves the symbol type classifier.
HRESULT get_symTag ( DWORD* pRetVal );
Parameters
pRetVal
[out] Returns A value from the SymTagEnum Enumeration enumeration that specifies the symbol type classifier.
If successful, returns S_OK; otherwise, returns S_FALSE or an error code.
A return value of |
IDiaSymbol* pType; DWORD tag = 0; pType->get_symTag( &tag );
Show: