home *** CD-ROM | disk | FTP | other *** search
- /*
- * timeb.h -- extra-ANSI
- *
- * Definitions needed by the ftime function.
- *
- * Copyright (c) 1990, MetaWare Incorporated
- */
-
- #ifndef _TIMEB_H
- #define _TIMEB_H
- #pragma push_align_members(64);
-
- #ifdef __CPLUSPLUS__
- extern "C" {
- #endif
-
- #ifndef _TIME_T_DEFINED
- #define _TIME_T_DEFINED
- typedef long time_t;
- #endif
-
- #ifndef _TIMEB_DEFINED
- #define _TIMEB_DEFINED
- struct _timeb {
- time_t time;
- unsigned short millitm;
- short timezone;
- short dstflag;
- };
- #endif
-
- extern void _ftime(struct _timeb * __tptr);
-
- #if __HIGHC__
-
- #define timeb _timeb
-
- extern void ftime(struct timeb * __tptr);
-
- #endif /* __HIGHC__ */
- #ifdef __CPLUSPLUS__
- }
- #endif
- #pragma pop_align_members();
- #endif /* _TIMEB_H */
-