SymGetLineNext64 Function
Retrieves the line information for the next source line.
This function supersedes the SymGetLineNext function. For more information, see Updated Platform Support.
BOOL WINAPI SymGetLineNext64( __in HANDLE hProcess, __in_out PIMAGEHLP_LINE64 Line );
Parameters
- hProcess
-
A handle to the process that was originally passed to the SymInitialize function.
- Line
-
A pointer to an IMAGEHLP_LINE64 structure that contains the line information.
Return Value
If the function succeeds, the return value is TRUE.
If the function fails, the return value is FALSE. To retrieve extended error information, call GetLastError.
Remarks
The SymGetLineNext64 function requires that the IMAGEHLP_LINE64 structure have valid data, presumably obtained from a call to the SymGetLineFromAddr64 or SymGetLineFromName64 function. This structure receives the line information for the next line in sequence.
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 5.1 or later. |
---|---|
Header |
Declared in Dbghelp.h. |
Library |
Use Dbghelp.lib. |
DLL |
Requires Dbghelp.dll. |
Unicode |
Implemented as SymGetLineNextW64 (Unicode) and SymGetLineNext64 (ANSI). |
See Also
DbgHelp FunctionsIMAGEHLP_LINE64
SymGetLineFromAddr64
SymGetLineFromName64
SymGetLinePrev64
SymInitialize
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.