SymSrvGetSupplement Function

Debug Help Library

SymSrvGetSupplement Function

Retrives the specified file from the supplement for a symbol store.

PCTSTR WINAPI SymSrvGetSupplement(
  __in          HANDLE hProcess,
  __in          PCTSTR SymPath,
  __in          PCTSTR Node,
  __in          PCTSTR File
);

Parameters

hProcess

A handle to a process. This handle must have been previously passed to the SymInitialize function.

SymPath

The symbol path. The function uses only the symbol stores described in standard syntax for symbol stores. All other paths are ignored. If this parameter is NULL, the function uses the symbol path set using the SymInitialize or SymSetSearchPath function.

Node

The symbol file associated with the supplemental file.

File

The name of the file.

Return Value

If the function succeeds, the return value is the fully-qualified path for the supplemental file.

If the function fails, the return value is NULL. To retrieve extended error information, call GetLastError.

Remarks

For more information on supplemental files, see SymSrvStoreSupplement.

This function returns a pointer to a buffer that may be reused by another function. Therefore, be sure to copy the data returned to another buffer immediately.

All DbgHelp functions, such as this one, are single threaded. Therefore, calls from more than one thread to this function will likely result in unexpected behavior or memory corruption. To avoid this, you must synchronize all concurrent calls from more than one thread to this function.

To call the Unicode version of this function, define DBGHELP_TRANSLATE_TCHAR.

Requirements

Redistributable

Requires DbgHelp.dll 6.3 or later.

Header

Declared in DbgHelp.h.

Library

Use Dbghelp.lib.

DLL

Requires Dbghelp.dll.

Unicode

Implemented as SymSrvGetSupplementW (Unicode) and SymSrvGetSupplement (ANSI).

See Also

DbgHelp FunctionsSymSrvStoreSupplement


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.