[Overview][Types][Procedures and functions][Index] |
Find a section in the binary image.
Source position: exeinfo.pp line 55
function FindExeSection( |
var e: TExeFile; |
const secname: string; |
var secofs: LongInt; |
var seclen: LongInt |
):Boolean; |
e |
|
Record representing the opened executable image |
secname |
|
Name of section that must be found |
secofs |
|
Offset of the section in the binary image. |
seclen |
|
Length of the section in bytes. |
True if the section was found, False if not
FindExeSection examines the binary that was opened with OpenExeFile (represented by e) and searches for the section named secname. If found, the section offset is returned in secofs and the section length (in bytes) is returned in seclen.
The function returns True if the section was found, False if not.
|
Open an executable file |