IDiaSession::findSymbolsByRVAForAcceleratorPointerTag

Note

This article applies to Visual Studio 2015. 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

Given a corresponding tag value, this method returns an enumeration of symbols that are contained in a specified parent Accelerator stub function at a specified relative virtual address.

Syntax

HRESULT findSymbolsByRVAForAcceleratorPointerTag (   
   IDiaSymbol*           parent,  
   DWORD                 tagValue,  
   DWORD                 rva,  
   IDiaEnumSymbols**     ppResult  
);  

Parameters

parent
[in] An IDiaSymbol that corresponds to the Accelerator stub function to be searched.

tagValue
[in] The pointer tag value.

rva
[in] The relative virtual address.

ppResult
[out] A pointer to an IDiaEnumSymbols interface pointer that is initialized with the result.

Return Value

If successful, returns S_OK; otherwise, returns an error code.

Remarks

Call this method only on an IDiaSymbol interface that corresponds to an Accelerator stub function.

See Also

IDiaSession
IDiaEnumSymbols
IDiaSymbol