diff options
Diffstat (limited to 'cpp/include/Ice/Const.h')
-rw-r--r-- | cpp/include/Ice/Const.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cpp/include/Ice/Const.h b/cpp/include/Ice/Const.h new file mode 100644 index 00000000000..4d367c22b3c --- /dev/null +++ b/cpp/include/Ice/Const.h @@ -0,0 +1,22 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef ICE_CONST_H +#define ICE_CONST_H + +#if defined(_WIN32) +# define ICE_INT64_LITERAL(n) n##i64 +#elif defined(__linux__) && defined(i386) +# define ICE_INT64_LITERAL(n) n##LL +#else +# error "Unsupported operating system or platform!" +#endif + +#endif |