home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / incsys.pak / TIMEB.H < prev    next >
C/C++ Source or Header  |  1997-07-23  |  947b  |  66 lines

  1. /*  timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5. */
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 6.5
  9.  *
  10.  *      Copyright (c) 1987, 1994 by Borland International
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14.  
  15. #if !defined(__TIMEB_H)
  16. #define __TIMEB_H
  17.  
  18. #if !defined(___DEFS_H)
  19. #include <_defs.h>
  20. #endif
  21.  
  22.  
  23. #if !defined(RC_INVOKED)
  24.  
  25. #if defined(__STDC__)
  26. #pragma warn -nak
  27. #endif
  28.  
  29. #endif  /* !RC_INVOKED */
  30.  
  31.  
  32. #if !defined(__STDC__)
  33. #define timezone _timezone
  34. #endif
  35.  
  36. struct timeb {
  37.       long  time;
  38.       short millitm;
  39. #if defined(_RTLDLL)
  40.       short __timezone;
  41. #else
  42.       short _timezone;
  43. #endif
  44.       short dstflag;
  45.       };
  46.  
  47. #ifdef __cplusplus
  48. extern "C" {
  49. #endif
  50. void _RTLENTRY _EXPFUNC ftime(struct timeb _FAR *);
  51. #ifdef __cplusplus
  52. }
  53. #endif
  54.  
  55.  
  56. #if !defined(RC_INVOKED)
  57.  
  58. #if defined(__STDC__)
  59. #pragma warn .nak
  60. #endif
  61.  
  62.  
  63. #endif  /* !RC_INVOKED */
  64.  
  65. #endif  /* __TIMEB_H */
  66.