2006-10-02 13:54:35 +02:00
|
|
|
/* types.h - define some extra types
|
|
|
|
* Copyright (C) 1999, 2000, 2001, 2006 Free Software Foundation, Inc.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* This file is part of GnuPG.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2017-02-24 13:48:28 +01:00
|
|
|
* GnuPG is free software; you can redistribute and/or modify this
|
|
|
|
* part of GnuPG under the terms of either
|
2011-09-30 12:52:11 +02:00
|
|
|
*
|
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - the GNU General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 2 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* GnuPG is distributed in the hope that it will be useful, but
|
2006-10-02 13:54:35 +02:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* You should have received a copies of the GNU General Public License
|
|
|
|
* and the GNU Lesser General Public License along with this program;
|
2016-11-05 12:02:19 +01:00
|
|
|
* if not, see <https://www.gnu.org/licenses/>.
|
2003-01-09 13:36:05 +01:00
|
|
|
*/
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#ifndef GNUPG_COMMON_TYPES_H
|
|
|
|
#define GNUPG_COMMON_TYPES_H
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2014-01-29 17:39:22 +01:00
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
|
|
# include <inttypes.h>
|
|
|
|
#endif
|
|
|
|
|
2003-01-09 13:36:05 +01:00
|
|
|
/* The AC_CHECK_SIZEOF() in configure fails for some machines.
|
|
|
|
* we provide some fallback values here */
|
|
|
|
#if !SIZEOF_UNSIGNED_SHORT
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef SIZEOF_UNSIGNED_SHORT
|
|
|
|
# define SIZEOF_UNSIGNED_SHORT 2
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_INT
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef SIZEOF_UNSIGNED_INT
|
|
|
|
# define SIZEOF_UNSIGNED_INT 4
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
#if !SIZEOF_UNSIGNED_LONG
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef SIZEOF_UNSIGNED_LONG
|
|
|
|
# define SIZEOF_UNSIGNED_LONG 4
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
|
2014-01-29 17:39:22 +01:00
|
|
|
/* We use byte as an abbreviation for unsigned char. On some
|
|
|
|
platforms this needs special treatment:
|
|
|
|
|
|
|
|
- RISC OS:
|
|
|
|
Norcroft C treats char = unsigned char as legal assignment
|
|
|
|
but char* = unsigned char* as illegal assignment
|
|
|
|
and the same applies to the signed variants as well. Thus we use
|
|
|
|
char which is anyway unsigned.
|
|
|
|
|
|
|
|
- Windows:
|
|
|
|
Windows typedefs byte in the RPC headers but we need to avoid a
|
|
|
|
warning about a double definition.
|
|
|
|
*/
|
2020-11-18 05:33:41 +01:00
|
|
|
#ifndef HAVE_TYPE_BYTE
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef byte /* There might be a macro with this name. */
|
2014-01-29 17:39:22 +01:00
|
|
|
# ifdef __riscos__
|
|
|
|
typedef char byte;
|
|
|
|
# elif !(defined(_WIN32) && defined(cbNDRContext))
|
|
|
|
typedef unsigned char byte;
|
|
|
|
# endif
|
2020-11-18 05:33:41 +01:00
|
|
|
# define HAVE_TYPE_BYTE
|
|
|
|
#endif /*!HAVE_TYPE_BYTE*/
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2020-11-18 05:33:41 +01:00
|
|
|
#ifndef HAVE_TYPE_USHORT
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef ushort /* There might be a macro with this name. */
|
|
|
|
typedef unsigned short ushort;
|
2020-11-18 05:33:41 +01:00
|
|
|
# define HAVE_TYPE_USHORT
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 05:33:41 +01:00
|
|
|
#ifndef HAVE_TYPE_ULONG
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef ulong /* There might be a macro with this name. */
|
|
|
|
typedef unsigned long ulong;
|
2020-11-18 05:33:41 +01:00
|
|
|
# define HAVE_TYPE_ULONG
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 05:33:41 +01:00
|
|
|
#ifndef HAVE_TYPE_U16
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef u16 /* There might be a macro with this name. */
|
|
|
|
# if SIZEOF_UNSIGNED_INT == 2
|
|
|
|
typedef unsigned int u16;
|
|
|
|
# elif SIZEOF_UNSIGNED_SHORT == 2
|
|
|
|
typedef unsigned short u16;
|
|
|
|
# else
|
|
|
|
# error no typedef for u16
|
|
|
|
# endif
|
2020-11-18 05:33:41 +01:00
|
|
|
# define HAVE_TYPE_U16
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
|
2020-11-18 05:33:41 +01:00
|
|
|
#ifndef HAVE_TYPE_U32
|
2006-10-02 13:54:35 +02:00
|
|
|
# undef u32 /* There might be a macro with this name. */
|
|
|
|
# if SIZEOF_UNSIGNED_INT == 4
|
|
|
|
typedef unsigned int u32;
|
|
|
|
# elif SIZEOF_UNSIGNED_LONG == 4
|
|
|
|
typedef unsigned long u32;
|
|
|
|
# else
|
|
|
|
# error no typedef for u32
|
|
|
|
# endif
|
2020-11-18 05:33:41 +01:00
|
|
|
# define HAVE_TYPE_U32
|
2003-01-09 13:36:05 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#endif /*GNUPG_COMMON_TYPES_H*/
|