Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

SRCCODEINFO structure (dbghelp.h)

Contains line information.

Syntax

typedef struct _SRCCODEINFO {
 DWORD SizeOfStruct;
 PVOID Key;
 DWORD64 ModBase;
 CHAR Obj[MAX_PATH + 1];
 CHAR FileName[MAX_PATH + 1];
 DWORD LineNumber;
 DWORD64 Address;
} SRCCODEINFO, *PSRCCODEINFO;

Members

SizeOfStruct

The size of the structure, in bytes.

Key

This member is not used.

ModBase

The base address of the module that contains the line.

Obj[MAX_PATH + 1]

The name of the object file within the module that contains the line.

FileName[MAX_PATH + 1]

The fully qualified source file name.

LineNumber

The line number within the source file.

Address

The virtual address of the first instruction of the line.

Requirements

Requirement Value
Header dbghelp.h
Redistributable DbgHelp.dll 6.1 or later

See also

SymEnumLinesProc


Feedback

Was this page helpful?

Additional resources