Debugging Tools for Windows |
The AppendSymbolPath and AppendSymbolPathWide methods append directories to the symbol path.
IDebugSymbols::AppendSymbolPath(
IN PCSTR Addition
);
IDebugSymbols3::AppendSymbolPathWide(
IN PCWSTR Addition
);
#ifdef UNICODE
#define AppendSymbolPathT AppendSymbolPathWide
#else
#define AppendSymbolPathT AppendSymbolPath
#endif
These methods can also return error values. See Return Values for more details.
AppendSymbolPath is available in all versions of IDebugSymbols. AppendSymbolPathWide is available in IDebugSymbols3 and later versions.
For more information about manipulating the symbol path, see Using Symbols. For an overview of the symbol path and its syntax, see Symbol Path.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.