home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 May / PCWorld_2001-05_cd.bin / Software / Vyzkuste / devc / _SETUP.6 / Group6 / timeb.h < prev    next >
C/C++ Source or Header  |  1999-11-07  |  1KB  |  83 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: 1.2 $
  22.  * $Author: khan $
  23.  * $Date: 1998/06/17 20:43:15 $
  24.  *
  25.  */
  26.  
  27. #ifndef    __STRICT_ANSI__
  28.  
  29. #ifndef    _TIMEB_H_
  30. #define    _TIMEB_H_
  31.  
  32. /* All the headers include this file. */
  33. #include <_mingw.h>
  34.  
  35. #ifndef    RC_INVOKED
  36.  
  37. /*
  38.  * TODO: Structure not tested.
  39.  */
  40. struct _timeb
  41. {
  42.     long    time;
  43.     short    millitm;
  44.     short    timezone;
  45.     short    dstflag;
  46. };
  47.  
  48. #ifndef    _NO_OLDNAMES
  49. /*
  50.  * TODO: Structure not tested.
  51.  */
  52. struct timeb
  53. {
  54.     long    time;
  55.     short    millitm;
  56.     short    timezone;
  57.     short    dstflag;
  58. };
  59. #endif
  60.  
  61.  
  62. #ifdef    __cplusplus
  63. extern "C" {
  64. #endif
  65.  
  66. /* TODO: Not tested. */
  67. void    _ftime (struct _timeb* timebBuffer);
  68.  
  69. #ifndef    _NO_OLDNAMES
  70. void    ftime (struct timeb* timebBuffer);
  71. #endif    /* Not _NO_OLDNAMES */
  72.  
  73. #ifdef    __cplusplus
  74. }
  75. #endif
  76.  
  77. #endif    /* Not RC_INVOKED */
  78.  
  79. #endif    /* Not _TIMEB_H_ */
  80.  
  81. #endif    /* Not __STRICT_ANSI__ */
  82.  
  83.