RAD Studio
ContentsIndex
PreviousUpNext
sys\timeb.h

The following functions, macros, and classes are provided in sys\timeb.h:

Name 
Description 
Header File
sys\timeb.h
Category
Time and Date Routines
Prototype
void ftime(struct timeb *buf)
Description
Stores current time in timeb structure.
On UNIX platforms ftime is available only on System V systems.
ftime determines the current time and fills in the fields in the timeb structure pointed to by buf. The timeb structure contains four fields: time, millitm, _timezone, and dstflag:
struct timeb {
long time ;
short millitm ;
short _timezone ;
short dstflag ;
};
  • timeprovides the time in seconds since 00:00:00 Greenwich mean time (GMT) January 1 1970.
  • millitmis the fractional part of a second in milliseconds.... more 
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
What do you think about this topic? Send feedback!