seglist = InternalLoadSeg(fh,table,functionarray,stack)
D0 D0 A0 A1 A2
BPTR InternalLoadSeg(BPTR,BPTR,LONG *,LONG *)
Loads a load file from 'fh'. 'table' is used when loading an overlay, otherwise should be NULL. 'functionarray' is a pointer to an array of functions which will be used to read data and allocate/free memory as part of the load operation.
Note that the current
Seek() position after loading may be at any point after the last hunk loaded. The FileHandle will not be closed. If a stacksize is encoded in the file, the size will be stuffed in the LONG pointed to by 'stack'. This LONG should be initialized to your default value: InternalLoadSeg() will not change it if no stacksize is found. Clears unused portions of Code and Data hunks (as well as BSS hunks). (This also applies to
LoadSeg() and
NewLoadSeg()).
If the file being loaded is an overlaid file, this will return -(seglist). All other results will be positive.
NOTE to overlay users: InternalLoadSeg() does NOT return seglist in both D0 and D1, as
LoadSeg does. The current "ovs.asm" uses
LoadSeg() and assumes returns are in D1. We will support this for
LoadSeg() ONLY.
Really should use tags.