home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / TIMEB.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  849b  |  59 lines

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