SymEnumLinesProc callback function
An application-defined callback function used with the SymEnumLines and SymEnumSourceLines functions.
The PSYM_ENUMLINES_CALLBACK and PSYM_ENUMLINES_CALLBACKW types define a pointer to this callback function. SymEnumLinesProc is a placeholder for the application-defined function name.
Syntax
BOOL CALLBACK SymEnumLinesProc( _In_ PSRCCODEINFO LineInfo, _In_ PVOID UserContext );
Parameters
- LineInfo [in]
-
A pointer to a SRCCODEINFO structure that provides information about the line.
- UserContext [in]
-
The user-defined value passed from the SymEnumLines function, or NULL. This parameter is typically used by an application to pass a pointer to a data structure that provides context information for the callback function.
Return value
If the function returns TRUE, the enumeration will continue.
If the function returns FALSE, the enumeration will stop.
Requirements
|
Redistributable |
DbgHelp.dll 6.1 or later |
|---|---|
|
Header |
|
See also