/* * The Python Imaging Library * $Id: //modules/pil/libImaging/ImPlatform.h#3 $ * * platform declarations for the imaging core library * * Copyright (c) Fredrik Lundh 1995-2003. */ #include "ImConfig.h" /* Check that we have an ANSI compliant compiler */ #ifndef HAVE_PROTOTYPES #error Sorry, this library requires support for ANSI prototypes. #endif #ifndef STDC_HEADERS #error Sorry, this library requires ANSI header files. #endif #if SIZEOF_SHORT == 2 #define INT16 short #elif SIZEOF_INT == 2 #define INT16 int #else #define INT16 short /* most things works just fine anyway... */ #endif #if SIZEOF_SHORT == 4 #define INT32 short #elif SIZEOF_INT == 4 #define INT32 int #elif SIZEOF_LONG == 4 #define INT32 long #else #error Cannot find required 32-bit integer type #endif #if SIZEOF_LONG == 8 #define INT64 long #endif #if SIZEOF_FLOAT == 4 #define FLOAT32 float #elif SIZEOF_DOUBLE == 4 #define FLOAT32 double /* and pigs can fly... */ #else #error Cannot find required 32-bit floating point type #endif #if SIZEOF_DOUBLE == 8 #define FLOAT64 double #endif #define INT8 signed char #define UINT8 unsigned char #define UINT16 unsigned INT16 #define UINT32 unsigned INT32