fpc/packages/base/libc/stimebh.inc
2005-02-14 17:13:06 +00:00

20 lines
486 B
PHP

type
Ptimeb = ^timeb;
timeb = record
time : time_t;
millitm : word;
timezone : smallint;
dstflag : smallint;
end;
function ftime(__timebuf:Ptimeb):longint;cdecl;external clib name 'ftime';
{ ---------------------------------------------------------------------
Borland compatibility types
---------------------------------------------------------------------}
// Type
function ftime(var __timebuf:timeb):longint;cdecl;external clib name 'ftime';