Table of Content
HAL Forum
procedure PutLongInArea (
longint Add,area Here,longint Offset)
Description:
Inserts a numeric value to the specified point of an area that has LongInt byte length (4).
Parameters:
Add Numberical variable that will be added to the area
Here Area that will receive that numberical value and store it in byte-format
Offset The nubmer of bytes from the start from the area where the LongInt will be stored
global
procedure EndDataTransfer(var Area request)
begin
  PutLongInArea(GetAreaLength(request)-4,request,0);    
  return;
end;
Related topics:
««