SymFindDebugInfoFileW function (dbghelp.h)

Locates a .dbg file in the process search path.

Syntax

HANDLE IMAGEAPI SymFindDebugInfoFileW(
  [in]           HANDLE                     hProcess,
  [in]           PCWSTR                     FileName,
  [out]          PWSTR                      DebugFilePath,
  [in, optional] PFIND_DEBUG_FILE_CALLBACKW Callback,
  [in, optional] PVOID                      CallerData
);

Parameters

[in] hProcess

A handle to the process that was originally passed to the SymInitialize function.

[in] FileName

The name of the .dbg file. You can use a partial path.

[out] DebugFilePath

The fully qualified path of the .dbg file. This buffer must be at least MAX_PATH characters.

[in, optional] Callback

An application-defined callback function that verifies whether the correct file was found or the function should continue its search. For more information, see FindDebugInfoFileProc.

This parameter can be NULL.

[in, optional] CallerData

A user-defined value or NULL. This value is simply passed to the callback function. This parameter is typically used by an application to pass a pointer to a data structure that provides some context for the callback function.

Return value

If the function succeeds, the return value is an open handle to the .dbg file.

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

Remarks

This function uses the search path set using the SymInitialize or SymSetSearchPath function.

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.

Note

The dbghelp.h header defines SymFindDebugInfoFile as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.

Requirements

Requirement Value
Target Platform Windows
Header dbghelp.h
Library Dbghelp.lib
DLL Dbghelp.dll
Redistributable DbgHelp.dll 6.6 or later

See also

DbgHelp Functions

FindDebugInfoFileProc