home *** CD-ROM | disk | FTP | other *** search
- /*
- * types.h
- *
- * The definition of constants, data types and global variables.
- *
- * This file is part of the Mingw32 package.
- *
- * Contributors:
- * Created by Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
- * Lots of types supplied by Pedro A. Aranda <paag@tid.es>
- *
- * THIS SOFTWARE IS NOT COPYRIGHTED
- *
- * This source code is offered for use in the public domain. You may
- * use, modify or distribute it freely.
- *
- * This code is distributed in the hope that it will be useful but
- * WITHOUT ANY WARRANTY. ALL WARRENTIES, EXPRESS OR IMPLIED ARE HEREBY
- * DISCLAMED. This includes but is not limited to warrenties of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- *
- * $Revision: 1.7 $
- * $Author: khan $
- * $Date: 1998/12/29 21:41:40 $
- *
- */
-
- #ifndef _TYPES_H_
- #define _TYPES_H_
-
- /* All the headers include this file. */
- #include <_mingw.h>
-
- #define __need_wchar_t
- #define __need_size_t
- #define __need_ptrdiff_t
- #ifndef RC_INVOKED
- #include <stddef.h>
- #endif /* Not RC_INVOKED */
-
- #ifndef RC_INVOKED
-
- #ifndef _TIME_T_
- #define _TIME_T_
- typedef long time_t;
- #endif
-
-
- #ifndef __STRICT_ANSI__
-
- #ifndef _OFF_T_
- #define _OFF_T_
- typedef long _off_t;
-
- #ifndef _NO_OLDNAMES
- typedef _off_t off_t;
- #endif
- #endif /* Not _OFF_T_ */
-
-
- #ifndef _DEV_T_
- #define _DEV_T_
- #ifdef __MSVCRT__
- typedef unsigned int _dev_t;
- #else
- typedef short _dev_t;
- #endif
-
- #ifndef _NO_OLDNAMES
- typedef _dev_t dev_t;
- #endif
- #endif /* Not _DEV_T_ */
-
-
- #ifndef _INO_T_
- #define _INO_T_
- typedef short _ino_t;
-
- #ifndef _NO_OLDNAMES
- typedef _ino_t ino_t;
- #endif
- #endif /* Not _INO_T_ */
-
-
- #ifndef _PID_T_
- #define _PID_T_
- typedef int _pid_t;
-
- #ifndef _NO_OLDNAMES
- typedef _pid_t pid_t;
- #endif
- #endif /* Not _PID_T_ */
-
-
- #ifndef _MODE_T_
- #define _MODE_T_
- typedef unsigned short _mode_t;
-
- #ifndef _NO_OLDNAMES
- typedef _mode_t mode_t;
- #endif
- #endif /* Not _MODE_T_ */
-
-
- #ifndef _SIGSET_T_
- #define _SIGSET_T_
- typedef int _sigset_t;
-
- #ifndef _NO_OLDNAMES
- typedef _sigset_t sigset_t;
- #endif
- #endif /* Not _SIGSET_T_ */
-
- #endif /* Not __STRICT_ANSI__ */
-
- #endif /* Not RC_INVOKED */
-
- #endif /* Not _TYPES_H_ */
-