SYMBOL_SEARCH_INFO_FIELDS

Specifies the kind of symbol information to retrieve.

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

Members

  • 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 IDebugModule3::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

Reference

Enumerations (Visual Studio Debugging)

IDebugModule3::GetSymbolInfo