Sweden-Number/include/msvcrt/sys/types.h

31 lines
532 B
C
Raw Normal View History

2001-04-11 01:21:43 +02:00
/*
* _stat() definitions
*
* Copyright 2000 Francois Gouget.
*/
#ifndef __WINE_SYS_TYPES_H
#define __WINE_SYS_TYPES_H
2001-10-22 20:59:23 +02:00
#define __WINE_USE_MSVCRT
2001-04-11 01:21:43 +02:00
#ifdef USE_MSVCRT_PREFIX
#define MSVCRT(x) MSVCRT_##x
#else
#define MSVCRT(x) x
#endif
2001-11-23 19:25:34 +01:00
typedef unsigned int _dev_t;
2001-04-11 01:21:43 +02:00
typedef unsigned short _ino_t;
typedef int _off_t;
typedef long MSVCRT(time_t);
#ifndef USE_MSVCRT_PREFIX
#define dev_t _dev_t
#define ino_t _ino_t
#define off_t _off_t
#endif /* USE_MSVCRT_PREFIX */
#endif /* __WINE_SYS_TYPES_H */