Debugging Tools for Windows |
The AppendSourcePath and AppendSourcePathWide methods append directories to the source path.
IDebugSymbols::AppendSourcePath(
IN PCSTR Addition
);
IDebugSymbols3::AppendSourcePathWide(
IN PWSTR Addition
);
#ifdef UNICODE
#define AppendSourcePathT AppendSourcePathWide
#else
#define AppendSourcePathT AppendSourcePath
#endif
These methods can also return error values. See Return Values for more details.
AppendSourcePath is available in all versions of IDebugSymbols. AppendSourcePathWide is available in IDebugSymbols3 and later versions.
The source path is used by the engine when searching for source files.
For more information about manipulating the source path, see Using Source Files. For an overview of the source path and its syntax, see Source Path.
Headers: Defined in Dbgeng.h. Include Dbgeng.h.