function ElapsedTime(ET : EventTimer) : DWORD;
EventTimer = record
StartMS : DWORD; {mSec count when timer was initialized}
ExpireMS : DWORD; {mSec count when timer will expire}
end;
Returns the elapsed time, in milliseconds, for this timer.
This routine returns the number of milliseconds that have elapsed since NewTimer was called to initialize the specified EventTimer. In the EventTimer record, both fields hold tick counts since midnight.
See also: ElapsedTimeInSecs, NewTimer