[Overview][Types][Procedures and functions][Variables][Index] Reference for unit 'lineinfo' (#rtl)

GetLineInfo

Return source line information about an address.

Declaration

Source position: lineinfo.pp line 31

function GetLineInfo(

  addr: PtrUInt;

  var func: string;

  var source: string;

  var line: LongInt

):Boolean;

Arguments

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.

Function result

True if the line information was found, False if not.

Description

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.

Errors

If no debug information is found, False is returned.


Documentation generated on: May 14 2021