home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 1.ddi / INCLUDE.ZIP / TIMEB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  581 b   |  36 lines

  1. /*  timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5.     Copyright (c) 1987, 1992 by Borland International
  6.     All Rights Reserved.
  7. */
  8.  
  9. #if !defined(__TIMEB_H)
  10. #define __TIMEB_H
  11.  
  12. #if !defined(___DEFS_H)
  13. #include <_defs.h>
  14. #endif
  15.  
  16. struct timeb {
  17.       long  time;
  18.       short millitm;
  19. #if defined(_RTLDLL)
  20.       short _timezone;
  21. #else
  22.       short timezone;
  23. #endif
  24.       short dstflag;
  25.       };
  26.  
  27. #ifdef __cplusplus
  28. extern "C" {
  29. #endif
  30. void _Cdecl _FARFUNC ftime(struct timeb _FAR *);
  31. #ifdef __cplusplus
  32. }
  33. #endif
  34.  
  35. #endif  /* __TIMEB_H */
  36.