home *** CD-ROM | disk | FTP | other *** search
/ PC Format (South-Africa) 2001 June / PCFJune.iso / Xenon / C++ / FreeCommandLineTools.exe / Include / Sys / timeb.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-31  |  850 b   |  60 lines

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