SymFindFileInPathProc callback function
An application-defined callback function used with the SymFindFileInPath function.
The PFINDFILEINPATHCALLBACK and PFINDFILEINPATHCALLBACKW types define a pointer to this callback function. SymFindFileInPathProc is a placeholder for the application-defined function name.
Syntax
BOOL CALLBACK SymFindFileInPathProc( _In_ PCTSTR fileName, _In_ PVOID context );
Parameters
- fileName [in]
-
The name of the file located by SymFindFileInPath.
- context [in]
-
The user-defined value specified in SymFindFileInPath, or NULL. 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
Return TRUE to continue searching.
Return FALSE to end the search.
Requirements
|
Redistributable |
DbgHelp.dll 5.1 or later |
|---|---|
|
Header |
|
See also