Program: gdcm
Module: $RCSfile: gdcmCommon.h,v $
Language: C++
- Date: $Date: 2005/01/21 19:51:12 $
- Version: $Revision: 1.53 $
+ Date: $Date: 2005/01/21 20:49:37 $
+ Version: $Revision: 1.54 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
#if defined(_MSC_VER) || defined(__BORLANDC__)
typedef signed char int8_t;
#endif
-typedef unsigned char uint8_t;
-typedef unsigned short uint16_t;
-typedef unsigned int uint32_t;
-typedef unsigned long uint64_t;
+typedef unsigned char uint8_t;
+typedef unsigned short uint16_t;
+typedef unsigned int uint32_t;
+typedef unsigned __int64 uint64_t;
#define UINT32_MAX (4294967295U)
#endif
Program: gdcm
Module: $RCSfile: gdcmUtil.cxx,v $
Language: C++
- Date: $Date: 2005/01/21 20:02:46 $
- Version: $Revision: 1.116 $
+ Date: $Date: 2005/01/21 20:49:37 $
+ Version: $Revision: 1.117 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
return s1_even == s2_even;
}
-
-
/**
* \brief tells us if the processor we are working with is BigEndian or not
*/
if (stat == 0)
{
// fill with zero to fit on 15 bytes.
+#if defined(_MSC_VER) || defined(__BORLANDC__)
+ return Format("%015I64u", d.n);
+#else
return Format("%015llu", d.n);
+#endif
}
else
{