Debugging Tools for Windows

GetSetSympath

The GetSetSympath function can be used to either get or set the symbol search path.

VOID 
  GetSetSympath (
    IN PSTR Arg,
    OUT PSTR Result OPTIONAL,
    IN int Length
    );

Parameters

Arg
Specifies the new search path. If this argument is NULL or the string is empty, the search path is not set and the current setting is returned in Result.
Result
Optional. If Arg is NULL, GetSetSympath stores the current search path in the buffer pointed to by Result.
Length
Specifies the size of the buffer for storing the result.

Return Value

None

Comments

When the symbol path is changed, a call to ReloadSymbols is made implicitly.

Requirements

Headers: Defined in wdbgexts.h. If you are writing a WdbgExts extension, include wdbgexts.h. If you are writing a DbgEng extension that calls this function, include wdbgexts.h before dbgeng.h (see Writing DbgEng Extension Code for details).

Build machine: CAPEBUILD