Table of Content
HAL Forum
function LongInt ExactTimeDiff (
Time starttime,Time endtime,Time difftime)
Description:
Finds time difference of time period in seconds and in time format.
Parameters:
starttime Start Time
endtime End Time
difftime Time Difference
global
function LongInt TimeDiffInSeconds(Time atim,Time btim)
begin
  LongInt res;
  Time dtime;

  res = ExactTimeDiff(atim,btim,dtime);  
  TimeDiffInSeconds = res;
  return;
end;
Related topics:
««