2001-04-11 01:21:43 +02:00
|
|
|
/*
|
|
|
|
* Path and directory definitions
|
|
|
|
*
|
|
|
|
* Copyright 2000 Francois Gouget.
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-04-11 01:21:43 +02:00
|
|
|
*/
|
|
|
|
#ifndef __WINE_SYS_TIMEB_H
|
|
|
|
#define __WINE_SYS_TIMEB_H
|
|
|
|
|
2008-12-11 22:37:34 +01:00
|
|
|
#include <crtdefs.h>
|
2007-02-20 09:35:41 +01:00
|
|
|
|
2008-12-11 22:37:34 +01:00
|
|
|
#include <pshpack8.h>
|
2001-04-11 01:21:43 +02:00
|
|
|
|
2004-06-25 03:19:15 +02:00
|
|
|
#ifndef _TIMEB_DEFINED
|
|
|
|
#define _TIMEB_DEFINED
|
2001-04-11 01:21:43 +02:00
|
|
|
struct _timeb
|
|
|
|
{
|
2004-06-25 03:19:15 +02:00
|
|
|
time_t time;
|
2001-04-11 01:21:43 +02:00
|
|
|
unsigned short millitm;
|
|
|
|
short timezone;
|
|
|
|
short dstflag;
|
|
|
|
};
|
2009-05-23 11:06:29 +02:00
|
|
|
struct __timeb32
|
|
|
|
{
|
|
|
|
__time32_t time;
|
|
|
|
unsigned short millitm;
|
|
|
|
short timezone;
|
|
|
|
short dstflag;
|
|
|
|
};
|
|
|
|
struct __timeb64
|
|
|
|
{
|
|
|
|
__time64_t time;
|
|
|
|
unsigned short millitm;
|
|
|
|
short timezone;
|
|
|
|
short dstflag;
|
|
|
|
};
|
2004-06-25 03:19:15 +02:00
|
|
|
#endif /* _TIMEB_DEFINED */
|
2001-04-11 01:21:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-05-23 11:06:29 +02:00
|
|
|
void __cdecl _ftime32(struct __timeb32*);
|
|
|
|
void __cdecl _ftime64(struct __timeb64*);
|
2001-04-11 01:21:43 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-05-23 11:06:29 +02:00
|
|
|
#ifdef _USE_32BIT_TIME_T
|
|
|
|
static inline void __cdecl _ftime(struct _timeb *tb) { return _ftime32((struct __timeb32*)tb); }
|
|
|
|
#else
|
|
|
|
static inline void __cdecl _ftime(struct _timeb *tb) { return _ftime64((struct __timeb64*)tb); }
|
|
|
|
#endif
|
2001-04-11 01:21:43 +02:00
|
|
|
|
|
|
|
#define timeb _timeb
|
|
|
|
|
2003-01-11 23:49:54 +01:00
|
|
|
static inline void ftime(struct _timeb* ptr) { return _ftime(ptr); }
|
2001-04-11 01:21:43 +02:00
|
|
|
|
2007-02-20 09:35:41 +01:00
|
|
|
#include <poppack.h>
|
|
|
|
|
2001-04-11 01:21:43 +02:00
|
|
|
#endif /* __WINE_SYS_TIMEB_H */
|