home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / miscprog / ad-prog / timeb.h < prev    next >
Text File  |  1988-08-29  |  425b  |  28 lines

  1. /*    timeb.h
  2.  
  3.     Struct and function declarations for ftime().
  4.  
  5.     Copyright (c) Borland International 1987,1988
  6.     All Rights Reserved.
  7. */
  8.  
  9. #if __STDC__
  10. #define _Cdecl
  11. #else
  12. #define _Cdecl cdecl
  13. #endif
  14.  
  15. #ifndef  __TIMEB_DEFINED
  16. #define  __TIMEB_DEFINED
  17.  
  18. struct timeb {
  19.       long  time;
  20.       short millitm;
  21.       short timezone;
  22.       short dstflag;
  23.       };
  24.  
  25. #endif
  26.  
  27. void _Cdecl ftime(struct timeb *);
  28.