home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / TIMEB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-19  |  722 b   |  53 lines

  1. /*  timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5. */
  6.  
  7. /* $Copyright: 1987$ */
  8. /* $Revision:   8.1  $ */
  9.  
  10. #if !defined(__TIMEB_H)
  11. #define __TIMEB_H
  12.  
  13. #if !defined(___DEFS_H)
  14. #include <_defs.h>
  15. #endif
  16.  
  17.  
  18. #if !defined(RC_INVOKED)
  19.  
  20. #if defined(__STDC__)
  21. #pragma warn -nak
  22. #endif
  23.  
  24. #endif  /* !RC_INVOKED */
  25.  
  26.  
  27. struct timeb {
  28.       long  time;
  29.       short millitm;
  30.       short timezone;
  31.       short dstflag;
  32.       };
  33.  
  34. #ifdef __cplusplus
  35. extern "C" {
  36. #endif
  37. void _RTLENTRY _EXPFUNC ftime(struct timeb _FAR *);
  38. #ifdef __cplusplus
  39. }
  40. #endif
  41.  
  42.  
  43. #if !defined(RC_INVOKED)
  44.  
  45. #if defined(__STDC__)
  46. #pragma warn .nak
  47. #endif
  48.  
  49.  
  50. #endif  /* !RC_INVOKED */
  51.  
  52. #endif  /* __TIMEB_H */
  53.