1999-07-04 17:56:03 +02:00
|
|
|
/*
|
|
|
|
* Compilers that uses ILP32, LP64 or P64 type models
|
|
|
|
* for both Win32 and Win64 are supported by this file.
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Patrik Stridvall
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
1999-07-04 17:56:03 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_BASETSD_H
|
|
|
|
#define __WINE_BASETSD_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Win32 was easy to implement under Unix since most (all?) 32-bit
|
|
|
|
* Unices uses the same type model (ILP32) as Win32, where int, long
|
|
|
|
* and pointer are 32-bit.
|
|
|
|
*
|
|
|
|
* Win64, however, will cause some problems when implemented under Unix.
|
|
|
|
* Linux/{Alpha, Sparc64} and most (all?) other 64-bit Unices uses
|
|
|
|
* the LP64 type model where int is 32-bit and long and pointer are
|
|
|
|
* 64-bit. Win64 on the other hand uses the P64 (sometimes called LLP64)
|
|
|
|
* type model where int and long are 32 bit and pointer is 64-bit.
|
|
|
|
*/
|
|
|
|
|
2004-08-26 02:31:20 +02:00
|
|
|
/* Type model independent typedefs */
|
2002-11-23 02:03:40 +01:00
|
|
|
/* The __intXX types are native types defined by the MS C compiler.
|
|
|
|
* Apps that make use of them before they get defined here, can
|
|
|
|
* simply add to the command line:
|
|
|
|
* -D__int8=char -D__int16=short -D__int32=int "-D__int64=long long"
|
|
|
|
*/
|
2003-03-17 00:54:18 +01:00
|
|
|
#if !defined(_MSC_VER) && !defined(__WIDL__)
|
2002-11-23 02:03:40 +01:00
|
|
|
# ifndef __int8
|
|
|
|
# define __int8 char
|
|
|
|
# endif
|
|
|
|
# ifndef __int16
|
|
|
|
# define __int16 short
|
|
|
|
# endif
|
|
|
|
# ifndef __int32
|
|
|
|
# define __int32 int
|
|
|
|
# endif
|
|
|
|
# ifndef __int64
|
|
|
|
# define __int64 long long
|
|
|
|
# endif
|
2002-02-05 19:09:29 +01:00
|
|
|
#endif /* !defined(_MSC_VER) */
|
|
|
|
|
2004-05-04 02:43:02 +02:00
|
|
|
/* FIXME: DECLSPEC_ALIGN should be declared only in winnt.h, but we need it here too */
|
|
|
|
#ifndef DECLSPEC_ALIGN
|
|
|
|
# if defined(_MSC_VER) && (_MSC_VER >= 1300) && !defined(MIDL_PASS)
|
|
|
|
# define DECLSPEC_ALIGN(x) __declspec(align(x))
|
|
|
|
# elif defined(__GNUC__)
|
|
|
|
# define DECLSPEC_ALIGN(x) __attribute__((aligned(x)))
|
|
|
|
# else
|
|
|
|
# define DECLSPEC_ALIGN(x)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2003-03-17 00:54:18 +01:00
|
|
|
typedef signed char INT8, *PINT8;
|
|
|
|
typedef signed short INT16, *PINT16;
|
|
|
|
typedef signed int INT32, *PINT32;
|
|
|
|
typedef unsigned char UINT8, *PUINT8;
|
|
|
|
typedef unsigned short UINT16, *PUINT16;
|
|
|
|
typedef unsigned int UINT32, *PUINT32;
|
|
|
|
typedef signed int LONG32, *PLONG32;
|
|
|
|
typedef unsigned int ULONG32, *PULONG32;
|
|
|
|
typedef unsigned int DWORD32, *PDWORD32;
|
2005-02-18 13:56:35 +01:00
|
|
|
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
typedef signed __int64 INT64, *PINT64;
|
|
|
|
typedef unsigned __int64 UINT64, *PUINT64;
|
|
|
|
typedef signed __int64 LONG64, *PLONG64;
|
|
|
|
typedef unsigned __int64 ULONG64, *PULONG64;
|
|
|
|
typedef unsigned __int64 DWORD64, *PDWORD64;
|
|
|
|
#else
|
|
|
|
typedef signed __int64 DECLSPEC_ALIGN(8) INT64, *PINT64;
|
|
|
|
typedef unsigned __int64 DECLSPEC_ALIGN(8) UINT64, *PUINT64;
|
2004-05-04 02:43:02 +02:00
|
|
|
typedef signed __int64 DECLSPEC_ALIGN(8) LONG64, *PLONG64;
|
|
|
|
typedef unsigned __int64 DECLSPEC_ALIGN(8) ULONG64, *PULONG64;
|
|
|
|
typedef unsigned __int64 DECLSPEC_ALIGN(8) DWORD64, *PDWORD64;
|
2005-02-18 13:56:35 +01:00
|
|
|
#endif
|
1999-07-04 17:56:03 +02:00
|
|
|
|
|
|
|
/* Win32 or Win64 dependent typedef/defines. */
|
|
|
|
|
|
|
|
#ifdef _WIN64
|
|
|
|
|
2002-09-12 19:29:12 +02:00
|
|
|
typedef signed __int64 INT_PTR, *PINT_PTR;
|
|
|
|
typedef signed __int64 LONG_PTR, *PLONG_PTR;
|
|
|
|
typedef unsigned __int64 UINT_PTR, *PUINT_PTR;
|
|
|
|
typedef unsigned __int64 ULONG_PTR, *PULONG_PTR;
|
|
|
|
typedef unsigned __int64 DWORD_PTR, *PDWORD_PTR;
|
1999-07-04 17:56:03 +02:00
|
|
|
|
|
|
|
#define MAXINT_PTR 0x7fffffffffffffff
|
|
|
|
#define MININT_PTR 0x8000000000000000
|
|
|
|
#define MAXUINT_PTR 0xffffffffffffffff
|
|
|
|
|
2003-03-17 00:54:18 +01:00
|
|
|
typedef int HALF_PTR, *PHALF_PTR;
|
|
|
|
typedef unsigned int UHALF_PTR, *PUHALF_PTR;
|
1999-07-04 17:56:03 +02:00
|
|
|
|
|
|
|
#define MAXHALF_PTR 0x7fffffff
|
|
|
|
#define MINHALF_PTR 0x80000000
|
|
|
|
#define MAXUHALF_PTR 0xffffffff
|
|
|
|
|
|
|
|
#else /* FIXME: defined(_WIN32) */
|
|
|
|
|
2003-03-17 00:54:18 +01:00
|
|
|
typedef int INT_PTR, *PINT_PTR;
|
2002-09-21 03:21:00 +02:00
|
|
|
typedef long LONG_PTR, *PLONG_PTR;
|
2003-03-17 00:54:18 +01:00
|
|
|
typedef unsigned int UINT_PTR, *PUINT_PTR;
|
2002-09-21 03:21:00 +02:00
|
|
|
typedef unsigned long ULONG_PTR, *PULONG_PTR;
|
|
|
|
typedef ULONG_PTR DWORD_PTR, *PDWORD_PTR;
|
1999-07-04 17:56:03 +02:00
|
|
|
|
|
|
|
#define MAXINT_PTR 0x7fffffff
|
|
|
|
#define MININT_PTR 0x80000000
|
|
|
|
#define MAXUINT_PTR 0xffffffff
|
|
|
|
|
2003-03-17 00:54:18 +01:00
|
|
|
typedef signed short HALF_PTR, *PHALF_PTR;
|
|
|
|
typedef unsigned short UHALF_PTR, *PUHALF_PTR;
|
1999-07-04 17:56:03 +02:00
|
|
|
|
|
|
|
#define MAXUHALF_PTR 0xffff
|
|
|
|
#define MAXHALF_PTR 0x7fff
|
|
|
|
#define MINHALF_PTR 0x8000
|
|
|
|
|
|
|
|
#endif /* defined(_WIN64) || defined(_WIN32) */
|
|
|
|
|
2002-09-21 03:21:00 +02:00
|
|
|
typedef LONG_PTR SSIZE_T, *PSSIZE_T;
|
|
|
|
typedef ULONG_PTR SIZE_T, *PSIZE_T;
|
1999-07-04 17:56:03 +02:00
|
|
|
|
2005-06-27 11:49:56 +02:00
|
|
|
typedef ULONG_PTR KAFFINITY, *PKAFFINITY;
|
|
|
|
|
2002-05-29 04:02:19 +02:00
|
|
|
/* Some Wine-specific definitions */
|
|
|
|
|
|
|
|
/* Architecture dependent settings. */
|
|
|
|
/* These are hardcoded to avoid dependencies on config.h in Winelib apps. */
|
|
|
|
#if defined(__i386__)
|
|
|
|
# undef WORDS_BIGENDIAN
|
|
|
|
# undef BITFIELDS_BIGENDIAN
|
|
|
|
# define ALLOW_UNALIGNED_ACCESS
|
2005-07-18 11:11:42 +02:00
|
|
|
#elif defined(__x86_64__)
|
|
|
|
# undef WORDS_BIGENDIAN
|
|
|
|
# undef BITFIELDS_BIGENDIAN
|
|
|
|
# define ALLOW_UNALIGNED_ACCESS
|
2002-05-29 04:02:19 +02:00
|
|
|
#elif defined(__sparc__)
|
|
|
|
# define WORDS_BIGENDIAN
|
|
|
|
# define BITFIELDS_BIGENDIAN
|
|
|
|
# undef ALLOW_UNALIGNED_ACCESS
|
2003-07-15 22:46:40 +02:00
|
|
|
#elif defined(__powerpc__)
|
2002-05-29 04:02:19 +02:00
|
|
|
# define WORDS_BIGENDIAN
|
|
|
|
# define BITFIELDS_BIGENDIAN
|
|
|
|
# undef ALLOW_UNALIGNED_ACCESS
|
2002-12-10 20:04:45 +01:00
|
|
|
#elif defined(__ALPHA__)
|
2004-10-18 21:37:30 +02:00
|
|
|
# undef WORDS_BIGENDIAN
|
|
|
|
# undef BITFIELDS_BIGENDIAN
|
2002-12-10 20:04:45 +01:00
|
|
|
# undef ALLOW_UNALIGNED_ACCESS
|
2003-03-17 00:54:18 +01:00
|
|
|
#elif !defined(RC_INVOKED) && !defined(__WIDL__)
|
2002-05-29 04:02:19 +02:00
|
|
|
# error Unknown CPU architecture!
|
|
|
|
#endif
|
|
|
|
|
1999-07-04 17:56:03 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* extern "C" */
|
|
|
|
#endif /* defined(__cplusplus) */
|
|
|
|
|
|
|
|
#endif /* !defined(__WINE_BASETSD_H) */
|