summaryrefslogtreecommitdiff
path: root/qpid/cpp/include/qpid/sys/windows/IntegerTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/cpp/include/qpid/sys/windows/IntegerTypes.h')
-rwxr-xr-xqpid/cpp/include/qpid/sys/windows/IntegerTypes.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/qpid/cpp/include/qpid/sys/windows/IntegerTypes.h b/qpid/cpp/include/qpid/sys/windows/IntegerTypes.h
index ece1a618e9..fff320bc96 100755
--- a/qpid/cpp/include/qpid/sys/windows/IntegerTypes.h
+++ b/qpid/cpp/include/qpid/sys/windows/IntegerTypes.h
@@ -22,13 +22,17 @@
*/
typedef unsigned char uint8_t;
-typedef char int8_t;
typedef unsigned short uint16_t;
typedef short int16_t;
typedef unsigned int uint32_t;
typedef int int32_t;
+#if defined(_MSC_VER)
+typedef char int8_t;
typedef unsigned __int64 uint64_t;
typedef __int64 int64_t;
+#else
+#include <stdint.h>
+#endif
// Visual Studio doesn't define other common types, so set them up here too.
typedef unsigned int uint;