home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c021 / 7.img / INCLUDE.ZIP / TIMEB.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-05-04  |  589 b   |  40 lines

  1. /*    timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5.         Copyright (c) Borland International 1987,1988,1990
  6.     All Rights Reserved.
  7. */
  8.  
  9. #if __STDC__
  10. #define _Cdecl
  11. #else
  12. #define _Cdecl cdecl
  13. #endif
  14.  
  15. #ifndef __PAS__
  16. #define _CType _Cdecl
  17. #else
  18. #define _CType pascal
  19. #endif
  20.  
  21. #ifndef  __TIMEB_DEFINED
  22. #define  __TIMEB_DEFINED
  23.  
  24. struct timeb {
  25.       long  time;
  26.       short millitm;
  27.       short timezone;
  28.       short dstflag;
  29.       };
  30.  
  31. #endif
  32.  
  33. #ifdef __cplusplus
  34. extern "C" {
  35. #endif
  36. void _Cdecl ftime(struct timeb *);
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40.