[Overview][Types][Procedures and functions][Variables][Index] |
Return source line information about an address.
Source position: lineinfo.pp line 31
function GetLineInfo( |
addr: PtrUInt; |
var func: string; |
var source: string; |
var line: LongInt |
):Boolean; |
addr |
|
Address to examine |
func |
|
Name of function in which Addr resides. |
source |
|
Source file in which Addr was implemented. |
line |
|
Line number on which Addr was implemented. |
True if the line information was found, False if not.
GetLineInfo returns source line information about the address addr. It searches this information in the stabs debugging information found in the binary: If the file was compiled without debug information, nothing will be returned. Upon successful retrieval of the debug information, True is returned, and the func parameter is filled with the name of the function in which the address is located. The source parameter contains the name of the file in which the function was implemented, and line contains the line number in the source file for addr.
If no debug information is found, False is returned.