blob: 39457c89d607876d9fcf8d192524a0ebb4a73b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// **********************************************************************
//
// Copyright (c) 2003
// ZeroC, Inc.
// Billerica, MA, USA
//
// All Rights Reserved.
//
// Ice is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 2 as published by
// the Free Software Foundation.
//
// **********************************************************************
#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
|