2
0

clktest.pas 225 B

1234567891011
  1. uses doscalls, clkdll;
  2. Var
  3. ID: Array[0..255] of Char;
  4. NextDate: TDateTime;
  5. begin
  6. WriteLn('RC=',ClkQuerySTData(@ID, NextDate));
  7. WriteLn(PChar(@ID));
  8. With NextDate do
  9. WriteLn(Hours,':',Minutes,':',Seconds);
  10. end.