SymSetSearchPath function dbghelp

int SymSetSearchPath(
  1. int hProcess,
  2. Pointer<Utf16> SearchPathA
)

Sets the search path for the specified process.

BOOL SymSetSearchPathW(
  HANDLE hProcess,
  PCWSTR SearchPath
);

Implementation

int SymSetSearchPath(int hProcess, Pointer<Utf16> SearchPathA) =>
    _SymSetSearchPath(hProcess, SearchPathA);