dos_compilers/Microsoft Pascal v4/INCLUDE/CLOCK.INT
2024-07-01 21:27:27 -07:00

11 lines
308 B
Plaintext

Interface;
Unit Clock(GetDat,SetDat,GetTim,SetTim);
Procedure GetDat(Vars Year,Month,Day:Integer);
Function SetDat(Year,Month,Day:Integer):Boolean;
Procedure GetTim(Vars Hours,Minutes,Seconds,Hundreds:Integer);
Function SetTim(Hours,Minutes,Seconds,Hundreds:Integer):Boolean;
End;