diff options
Diffstat (limited to 'packages/libc/src/stimebh.inc')
-rw-r--r-- | packages/libc/src/stimebh.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/libc/src/stimebh.inc b/packages/libc/src/stimebh.inc new file mode 100644 index 0000000000..7c8336fce3 --- /dev/null +++ b/packages/libc/src/stimebh.inc @@ -0,0 +1,19 @@ + +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'; |