IMAGEHLP_LINE64 Structure
Represents a source file line.
This structure supersedes the IMAGEHLP_LINE structure. For more information, see Updated Platform Support.
typedef struct _IMAGEHLP_LINE64 {
DWORD SizeOfStruct;
PVOID Key;
DWORD LineNumber;
PTSTR FileName;
DWORD64 Address; } IMAGEHLP_LINE64,
*PIMAGEHLP_LINE64;
Members
- SizeOfStruct
The size of the structure, in bytes. The caller must set this member to
sizeof(IMAGEHLP_LINE64)
.- Key
This member is reserved for use by the operating system.
- LineNumber
The line number in the file.
- FileName
The name of the file, including the full path.
- Address
The address of the first instruction in the line.
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
Unicode |
Implemented as IMAGEHLP_LINEW64 (Unicode) and IMAGEHLP_LINE64 (ANSI). |
See Also
SymGetLineFromAddr64
SymGetLineFromName64
SymGetLineNext64
SymGetLinePrev64
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.