IDiaSession::findAcceleratorInlineesByLinenum

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

Returns an enumeration of symbols for inline frames that correspond to the specified source location.

Syntax

HRESULT findAcceleratorInlineeLinesByName (   
   IDiaSymbol*           parent,  
   IDiaSourceFile*       file,  
   DWORD                 linenum,  
   DWORD                 colnum,  
   IDiaEnumLineNumbers** ppResult  
);  

Parameters

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

file
[in] The IDiaSourceFile of the source location.

linenum
[in] The line number of the source location.

colnum
[in] The column number of the source location.

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

Return Value

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

See Also

IDiaSession
IDiaEnumLineNumbers
IDiaSymbol