Expand Minimize
0 out of 1 rated this helpful - Rate this topic

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

DbgHelp.h

See also

DbgHelp Functions
SymFindFileInPath

 

 

Send comments about this topic to Microsoft

Build date: 10/26/2012

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.