home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fifty: Elektronik
/
FIFTY Elektronik (PS_Computer_Vertrieb).iso
/
ps8
/
fty1017
/
gepackt.exe
/
DISK2
/
PLOTSRC.EXE
/
TIME.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-11-10
|
263 b
|
18 lines
Unit Time;
interface
uses Dos;
Function Time_Ms:Longint; { msec}
implementation
Function Time_MS:Longint; { msec}
Var H,M,S,HS:Word;
T:Longint;
begin
GetTime(H,M,S,Hs);
T:=(((LongInt(H)*60+M)*60)+S)*100+Hs;
Time_Ms:=T*10;
end;
end.