Debugging Tools for Windows |
The SetSymbolPath and SetSymbolPathWide methods set the symbol path.
IDebugSymbols::SetSymbolPath(
IN PCSTR Path
);
IDebugSymbols3::SetSymbolPathWide(
IN PWSTR Path
);
#ifdef UNICODE
#define SetSymbolPathT SetSymbolPathWide
#else
#define SetSymbolPathT SetSymbolPath
#endif
These methods can also return error values. See Return Values for more details.
SetSymbolPath is available in all versions of IDebugSymbols. SetSymbolPathWide 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.