stimebh.inc 486 B

12345678910111213141516171819
  1. type
  2. Ptimeb = ^timeb;
  3. timeb = record
  4. time : time_t;
  5. millitm : word;
  6. timezone : smallint;
  7. dstflag : smallint;
  8. end;
  9. function ftime(__timebuf:Ptimeb):longint;cdecl;external clib name 'ftime';
  10. { ---------------------------------------------------------------------
  11. Borland compatibility types
  12. ---------------------------------------------------------------------}
  13. // Type
  14. function ftime(var __timebuf:timeb):longint;cdecl;external clib name 'ftime';