home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TOOL_INC.ZIP / GETTIME.INC < prev    next >
Encoding:
Text File  |  1988-01-29  |  334 b   |  17 lines

  1.  
  2. (*
  3.  * gettime - get time of day from system clock
  4.  *
  5.  *)
  6.  
  7. function get_time: real;
  8. var
  9.    h,m,s,s1: word;
  10. begin
  11.    GetTime(h,m,s,s1);
  12.    get_time := int(s1)/ 100.0 +   {seconds/100}
  13.                int(s) +           {seconds}
  14.                int(m) * 60.0 +    {minutes}
  15.                int(h) * 3600.0;   {hours}
  16. end;
  17.