Unit 'exec' Package
[Overview][Constants][Types][Procedures and functions][Variables][Index] [#morphunits]

MakeFunctions

Construct a function jump table

Declaration

Source position: exec.pas line 1781

procedure MakeFunctions(

  target: Pointer;

  functionArray: Pointer;

  funcDispBase: Pointer

);

Arguments

target

  

The target address for the high memory end of the function jump table. Typically this will be the library base pointer.

functionArray

  

A Pointer to an array of function pointers or function displacements. If nil, the array is assumed to contain absolute pointers to functions. If not nil, then the array is assumed to contain word displacements to functions. In both cases, the array is terminated by a -1 (of the same size as the actual entry.

funcDispBase

  

A Pointer to the base about which all function displacements are relative. If nil, then the function array contains absolute pointers.

Description

A low level function used by MakeLibrary() to build jump tables of the type used by libraries, devices and resources. It allows the table to be built anywhere in memory, and can be used both for initialization and replacement. This function also supports function pointer compression by expanding relative displacements into absolute pointers.

See also

MakeLibrary

  

Construct a library


Documentation generated on: 2021-07-30