Edit

Share via


SYMBOL_SEARCH_INFO_FIELDS

Specifies the kind of symbol information to retrieve.

Syntax

public enum enum_SYMBOL_SEARCH_INFO_FIELDS
{
   SSIF_NONE                = 0x00000000,
   SSIF_VERBOSE_SEARCH_INFO = 0x00000001
};

Fields

SSIF_NONE
Indicates no flags

SSIF_VERBOSE_SEARCH_INFO
Returns all search paths used for finding symbols

Remarks

These flags are passed as a parameter to the GetSymbolInfo method to determine the amount of information returned.

Note

Currently, only SSIF_VERBOSE_SEARCH_INFO is supported, and it must be specified as the dwFlags parameter to IDebugModule3::GetSymbolInfo. All other values return an error.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also