00001 /* $Id: CoinTypes.hpp 1215 2009-11-05 11:03:04Z forrest $ */ 00002 // Copyright (C) 2004, International Business Machines 00003 // Corporation and others. All Rights Reserved. 00004 00005 #ifndef _CoinTypes_hpp 00006 #define _CoinTypes_hpp 00007 00008 #include "CoinUtilsConfig.h" 00009 00010 #ifdef HAVE_CINTTYPES 00011 # include <cinttypes> 00012 #else 00013 # ifdef HAVE_INTTYPES_H 00014 # include <inttypes.h> 00015 # endif 00016 #endif 00017 00018 #define CoinInt64 COIN_INT64_T 00019 #define CoinUInt64 COIN_UINT64_T 00020 #define CoinIntPtr COIN_INTPTR_T 00021 00022 #endif