Unit Awatimes

Classes

Functions

HMSAdd - TimeRec
HMSSubtract - HMSAdd
IntToHMS - In1 minus In2 gives Out

HMSSubtract

Types

TimeRec

Constants

Variables


Functions


Procedure HMSAdd(In1, In2: TimeRec; var Out:TimeRec);

TimeRec

Procedure HMSSubtract(In1, In2: TimeRec; var Out:TimeRec);

HMSAdd

Procedure IntToHMS(H, M, S: Integer; var Out:TimeRec);

In1 minus In2 gives Out

HMSSubtract


Types


TimeRec = record
iHrs : Integer;
iMins : Integer;
iSecs : Integer;
sTime : String;
rHrs : Real;
end;
Added by A. Arnold October/November 1995.} {---------------------------------------------------- Unit defines the routines a TimeRec structure. TimeRec declares the time fields needed to support a particular event; i.e., the start of a online session. ------------------------------------------------------

Constants


Variables