| Paste number 9210: | rawTypes |
| Pasted by: | naventus |
| When: | 5 years, 1 month ago |
| Share: | Tweet this! | http://paste.lisp.org/+73U |
| Channel: | #fink |
| Paste contents: |
//========================================================================== // // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE // IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR // PURPOSE. // // Copyright (c) 1999 - 2001 On2 Technologies Inc. All Rights Reserved. // //-------------------------------------------------------------------------- #ifndef rawTypes_h #define rawTypes_h 1 // Typedefs for known width integral types and convenience. #include <stddef.h> #include <limits.h> #include "machine.h" #ifdef unix #include <sys/types.h> #endif // We define types int16 and int32. // They are the smallest native types having at least 16 and 32 bits. // Cannot count on existence of int64, so we put that in a special header // (int64.h) to better track our dependence. // No integral type has less than 8 bits, so no "int8" typedef is necessary. typedef unsigned char uchar; typedef signed char schar; typedef const char cchar; typedef const uchar cuchar; typedef const schar cschar; // Shorts are guaranteed to have at least 16 bits; // it's possible (though unlikely) that chars have 16 bits. #if !(defined(unix) || defined(USE_MAC)) || defined(__dietlibc__) typedef unsigned short ushort; #endif typedef const short cshort; typedef const ushort cushort; #if CHAR_BIT >= 16 typedef schar int16; typedef uchar uint16; #else typedef short int16; typedef ushort uint16; #endif typedef const int16 cint16; typedef const uint16 cuint16; // Longs are guaranteed to have at least 32 bits. // Ints are somewhere between shorts and longs. #if !(defined(unix) || defined(USE_MAC)) || defined(__dietlibc__) typedef unsigned int uint; typedef unsigned long ulong; #endif typedef const int cint; typedef const uint cuint; typedef const long clong; typedef const long culong; #if UCHAR_MAX >= 0xFFFFffffUL typedef schar int32; typedef uchar uint32; #elif USHRT_MAX >= 0xFFFFffffUL typedef short int32; typedef ushort uint32; #elif UINT_MAX >= 0xFFFFffffUL typedef int int32; typedef uint uint32; #else typedef long int32; typedef ulong uint32; #endif typedef const int32 cint32; typedef const uint32 cuint32; typedef const float cfloat; typedef const double cdouble; //typedef const bool cbool; typedef const size_t csize_t; #endif // rawTypes_h
This paste has no annotations.