mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-03 04:58:48 +02:00
20 lines
486 B
PHP
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';
|