home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.5 / Group8 / timeb.h < prev    next >
C/C++ Source or Header  |  1998-12-24  |  1KB  |  66 lines

  1. /*
  2.  * timeb.h
  3.  *
  4.  * Support for the UNIX System V ftime system call.
  5.  *
  6.  * This file is part of the Mingw32 package.
  7.  *
  8.  * Contributors:
  9.  *  Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
  10.  *
  11.  *  THIS SOFTWARE IS NOT COPYRIGHTED
  12.  *
  13.  *  This source code is offered for use in the public domain. You may
  14.  *  use, modify or distribute it freely.
  15.  *
  16.  *  This code is distributed in the hope that it will be useful but
  17.  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
  18.  *  DISCLAMED. This includes but is not limited to warranties of
  19.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  20.  *
  21.  * $Revision: 2.3 $
  22.  * $Author: colin $
  23.  * $Date: 1998/03/23 01:41:13 $
  24.  *
  25.  */
  26.  
  27. #ifndef    __STRICT_ANSI__
  28.  
  29. #ifndef    _TIMEB_H_
  30. #define    _TIMEB_H_
  31.  
  32. #ifndef    RC_INVOKED
  33.  
  34. /*
  35.  * TODO: Structure not tested.
  36.  */
  37. struct timeb
  38. {
  39.     long    time;
  40.     short    millitm;
  41.     short    timezone;
  42.     short    dstflag;
  43. };
  44.  
  45. #ifdef    __cplusplus
  46. extern "C" {
  47. #endif
  48.  
  49. /* TODO: Not tested. */
  50. void    _ftime (struct timeb* timebBuffer);
  51.  
  52. #ifndef    _NO_OLDNAMES
  53. void    ftime (struct timeb* timebBuffer);
  54. #endif    /* Not _NO_OLDNAMES */
  55.  
  56. #ifdef    __cplusplus
  57. }
  58. #endif
  59.  
  60. #endif    /* Not RC_INVOKED */
  61.  
  62. #endif    /* Not _TIMEB_H_ */
  63.  
  64. #endif    /* Not __STRICT_ANSI__ */
  65.  
  66.