IDebugSymbolGroup2::GetSymbolParameters method (dbgeng.h)

The GetSymbolParameters method returns the symbol parameters that describe the specified symbols in a symbol group.

Syntax

HRESULT GetSymbolParameters(
  [in]  ULONG                    Start,
  [in]  ULONG                    Count,
  [out] PDEBUG_SYMBOL_PARAMETERS Params
);

Parameters

[in] Start

The index in the symbol group of the first symbol whose parameters you want. The index of a symbol is an identification number. This number ranges from zero through the number of symbols in the symbol group minus one.

[in] Count

The number of symbol parameters that you want.

[out] Params

The symbol parameters. This array must hold at least Count elements. For a description of these parameters, see DEBUG_SYMBOL_PARAMETERS.

Return value

Return code Description
S_OK
The method was successful.
 

This method can also return error values. For more information, see Return Values.

Remarks

For more information about symbol groups, see Scopes and Symbol Groups.

Requirements

Requirement Value
Target Platform Desktop
Header dbgeng.h (include Dbgeng.h)

See also

DEBUG_SYMBOL_PARAMETERS

GetNumberSymbols

IDebugSymbolGroup

IDebugSymbolGroup2