1999-12-28 23:39:02 +00:00
|
|
|
/*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
2001-03-21 20:44:20 +00:00
|
|
|
* Copyright (C) 1997-2001, International Business Machines
|
1999-12-28 23:39:02 +00:00
|
|
|
* Corporation and others. All Rights Reserved.
|
|
|
|
*
|
|
|
|
*******************************************************************************
|
|
|
|
*
|
2000-04-25 21:20:01 +00:00
|
|
|
* FILE NAME : pos400.h
|
1999-12-28 23:39:02 +00:00
|
|
|
*
|
|
|
|
* Date Name Description
|
|
|
|
* 05/13/98 nos Creation (content moved here from ptypes.h).
|
|
|
|
* 03/02/99 stephen Added AS400 support.
|
|
|
|
* 03/30/99 stephen Added Linux support.
|
|
|
|
* 04/13/99 stephen Reworked for autoconf.
|
|
|
|
* 09/21/99 barry Created new for OS/400 platform.
|
|
|
|
*******************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Define the platform we're on. */
|
|
|
|
#ifndef OS400
|
|
|
|
#define OS400
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Define whether inttypes.h is available */
|
2000-06-30 21:35:03 +00:00
|
|
|
#define U_HAVE_INTTYPES_H 0
|
1999-12-28 23:39:02 +00:00
|
|
|
|
2000-04-25 21:20:01 +00:00
|
|
|
/*
|
|
|
|
* Define what support for C++ streams is available.
|
|
|
|
* If U_IOSTREAM_SOURCE is set to 199711, then <iostream> is available
|
|
|
|
* (1997711 is the date the ISO/IEC C++ FDIS was published), and then
|
|
|
|
* one should qualify streams using the std namespace in ICU header
|
|
|
|
* files.
|
|
|
|
* If U_IOSTREAM_SOURCE is set to 198506, then <iostream.h> is
|
|
|
|
* available instead (198506 is the date when Stroustrup published
|
|
|
|
* "An Extensible I/O Facility for C++" at the summer USENIX conference).
|
|
|
|
* If U_IOSTREAM_SOURCE is 0, then C++ streams are not available and
|
|
|
|
* support for them will be silently suppressed in ICU.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-10-17 22:50:27 +00:00
|
|
|
#ifndef U_IOSTREAM_SOURCE
|
2000-04-25 21:20:01 +00:00
|
|
|
#define U_IOSTREAM_SOURCE 198506
|
2000-10-17 22:50:27 +00:00
|
|
|
#endif
|
2000-04-25 21:20:01 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
/* Determines whether specific types are available */
|
|
|
|
#define HAVE_INT8_T 0
|
|
|
|
#define HAVE_UINT8_T 0
|
|
|
|
#define HAVE_INT16_T 0
|
|
|
|
#define HAVE_UINT16_T 0
|
|
|
|
#define HAVE_INT32_T 0
|
|
|
|
#define HAVE_UINT32_T 0
|
|
|
|
#define HAVE_BOOL_T 0
|
|
|
|
|
|
|
|
/* Determines the endianness of the platform */
|
|
|
|
#define U_IS_BIG_ENDIAN 1
|
|
|
|
|
2001-03-15 01:30:54 +00:00
|
|
|
#define HAVE_DLOPEN 0
|
|
|
|
|
2001-03-12 21:01:51 +00:00
|
|
|
/* 1 or 0 to enable or disable threads. If undefined, default is: enable threads. */
|
|
|
|
#define ICU_USE_THREADS 1
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Generic data types */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/* If your platform does not have the <inttypes.h> header, you may
|
|
|
|
need to edit the typedefs below. */
|
2000-06-30 21:35:03 +00:00
|
|
|
#if U_HAVE_INTTYPES_H
|
1999-12-28 23:39:02 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
#else
|
|
|
|
|
|
|
|
#if ! HAVE_INT8_T
|
|
|
|
typedef signed char int8_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_UINT8_T
|
|
|
|
typedef unsigned char uint8_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_INT16_T
|
|
|
|
typedef signed short int16_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_UINT16_T
|
|
|
|
typedef unsigned short uint16_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_INT32_T
|
|
|
|
typedef signed long int32_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ! HAVE_UINT32_T
|
|
|
|
typedef unsigned long uint32_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2001-02-21 01:25:39 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* See utypes.h for the normal defintion */
|
|
|
|
/*===========================================================================*/
|
2001-02-22 02:16:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
With the provided macro we should never be out of range of a given segment
|
|
|
|
(a traditional/typical segment that is). Our segments have 5 bytes for the id
|
|
|
|
and 3 bytes for the offset. The key is that the casting takes care of only
|
|
|
|
retrieving the offset portion minus x1000. Hence, the smallest offset seen in
|
|
|
|
a program is x001000 and when casted to an int would be 0. That's why we can
|
2001-03-09 01:29:44 +00:00
|
|
|
only add 0xffefff. Otherwise, we would exceed the segment.
|
|
|
|
|
|
|
|
Currently, 16MB is the current addressing limitation on as/400. This macro
|
|
|
|
may eventually be changed to use 2GB addressability for the newer version of
|
|
|
|
as/400 machines.
|
2001-02-22 02:16:33 +00:00
|
|
|
*/
|
2001-02-21 01:25:39 +00:00
|
|
|
#ifndef U_MAX_PTR
|
2001-03-09 01:29:44 +00:00
|
|
|
#define U_MAX_PTR(ptr) ((void*)(((char*)ptr)-((int32_t)(ptr))+((int32_t)0xffefff)))
|
2001-02-21 01:25:39 +00:00
|
|
|
#endif
|
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Character data types */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#define U_CHARSET_FAMILY 1
|
|
|
|
|
2001-02-20 00:47:25 +00:00
|
|
|
/*===========================================================================*/
|
2001-03-12 21:01:51 +00:00
|
|
|
/* Information about wchar support */
|
2001-02-20 00:47:25 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
2001-03-15 01:30:54 +00:00
|
|
|
#define U_HAVE_WCHAR_H 1
|
2001-03-12 21:01:51 +00:00
|
|
|
#define U_SIZEOF_WCHAR_T 2
|
|
|
|
|
2001-02-20 00:47:25 +00:00
|
|
|
#define U_HAVE_WCSCPY 1
|
|
|
|
|
2001-03-15 01:30:54 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Information about POSIX support */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#define U_HAVE_NL_LANGINFO 0
|
|
|
|
#define U_HAVE_NL_LANGINFO_CODESET 0
|
|
|
|
#define U_NL_LANGINFO_CODESET
|
|
|
|
|
2001-03-15 18:14:57 +00:00
|
|
|
/* These cannot be defined for this platform
|
2001-03-15 01:30:54 +00:00
|
|
|
#define U_TZSET
|
|
|
|
#define U_TIMEZONE
|
|
|
|
#define U_TZNAME
|
2001-03-15 18:14:57 +00:00
|
|
|
*/
|
2001-03-15 01:30:54 +00:00
|
|
|
|
1999-12-28 23:39:02 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Symbol import-export control */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#define U_EXPORT
|
|
|
|
#define U_EXPORT2
|
|
|
|
#define U_IMPORT
|
2000-07-11 22:25:51 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Programs used by ICU code */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2001-03-21 20:44:20 +00:00
|
|
|
#define U_MAKE "gmake"
|