d71135d687
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@34218 a95241bf-73f2-0310-859d-f6bbb57e9c96
79 lines
2.3 KiB
C
79 lines
2.3 KiB
C
/*
|
|
* Copyright 2009, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _CONFIG_TYPES_H
|
|
#define _CONFIG_TYPES_H
|
|
|
|
|
|
#include <config/HaikuConfig.h>
|
|
|
|
|
|
/* fixed-width types -- the __haiku_std_[u]int* types correspond to the POSIX
|
|
[u]int*_t types, the _haiku_[u]int* types to the BeOS [u]int* types. If
|
|
__HAIKU_BEOS_COMPATIBLE_TYPES is not defined both sets are identical. Once
|
|
we drop compatibility for good, we can consolidate the types.
|
|
*/
|
|
typedef signed char __haiku_std_int8;
|
|
typedef unsigned char __haiku_std_uint8;
|
|
typedef signed short __haiku_std_int16;
|
|
typedef unsigned short __haiku_std_uint16;
|
|
typedef signed int __haiku_std_int32;
|
|
typedef unsigned int __haiku_std_uint32;
|
|
typedef signed long long __haiku_std_int64;
|
|
typedef unsigned long long __haiku_std_uint64;
|
|
|
|
typedef __haiku_std_int8 __haiku_int8;
|
|
typedef __haiku_std_uint8 __haiku_uint8;
|
|
typedef __haiku_std_int16 __haiku_int16;
|
|
typedef __haiku_std_uint16 __haiku_uint16;
|
|
#ifdef __HAIKU_BEOS_COMPATIBLE_TYPES
|
|
typedef signed long int __haiku_int32;
|
|
typedef unsigned long int __haiku_uint32;
|
|
#else
|
|
typedef __haiku_std_int32 __haiku_int32;
|
|
typedef __haiku_std_uint32 __haiku_uint32;
|
|
#endif
|
|
typedef __haiku_std_int64 __haiku_int64;
|
|
typedef __haiku_std_uint64 __haiku_uint64;
|
|
|
|
/* address types */
|
|
#ifdef __HAIKU_ARCH_64_BIT
|
|
typedef __haiku_int64 __haiku_saddr_t;
|
|
typedef __haiku_uint64 __haiku_addr_t;
|
|
#else
|
|
typedef __haiku_int32 __haiku_saddr_t;
|
|
typedef __haiku_uint32 __haiku_addr_t;
|
|
#endif
|
|
|
|
/* address type limits */
|
|
#ifdef __HAIKU_ARCH_64_BIT
|
|
# define __HAIKU_SADDR_MAX (9223372036854775807LL)
|
|
# define __HAIKU_ADDR_MAX (18446744073709551615ULL)
|
|
#else
|
|
# define __HAIKU_SADDR_MAX (2147483647)
|
|
# define __HAIKU_ADDR_MAX (4294967295U)
|
|
#endif
|
|
#define __HAIKU_SADDR_MIN (-__HAIKU_SADDR_MAX-1)
|
|
|
|
|
|
/* printf()/scanf() format prefixes */
|
|
#define __HAIKU_STD_PRI_PREFIX_32 ""
|
|
#define __HAIKU_STD_PRI_PREFIX_64 "ll"
|
|
|
|
#ifdef __HAIKU_BEOS_COMPATIBLE_TYPES
|
|
# define __HAIKU_PRI_PREFIX_32 "l"
|
|
#else
|
|
# define __HAIKU_PRI_PREFIX_32 __HAIKU_STD_PRI_PREFIX_32
|
|
#endif
|
|
#define __HAIKU_PRI_PREFIX_64 __HAIKU_STD_PRI_PREFIX_64
|
|
|
|
#ifdef __HAIKU_ARCH_64_BIT
|
|
# define __HAIKU_PRI_PREFIX_ADDR __HAIKU_STD_PRI_PREFIX_64
|
|
#else
|
|
# define __HAIKU_PRI_PREFIX_ADDR __HAIKU_STD_PRI_PREFIX_32
|
|
#endif
|
|
|
|
|
|
#endif /* _CONFIG_TYPES_H */
|