This is another way to initialize a variable. For instance:
program Project1; {$APPTYPE CONSOLE} var i : integer = 5; begin WriteLn(i); ReadLn; end.
it might be clearer if it was written on the same line as
var TrampolineGetMemory: function(Size: NativeInt): Pointer; cdecl = nil;
Or maybe even better if the type was defined:
type TTrampolineGetMemory = function(Size: NativeInt): Pointer; cdecl;
J ... source share