SYMBOL_SEARCH_INFO_FIELDS
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
Specifies the kind of symbol information to retrieve.
Syntax
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 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