Ice 3.7 C++11 API Reference
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
a
c
e
g
i
n
o
p
r
s
t
u
w
Variables
b
c
e
g
i
k
n
p
s
t
u
w
Typedefs
a
b
c
d
e
f
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
y
~
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
Typedefs
e
i
l
p
s
t
Enumerations
Enumerator
Related Functions
Files
File List
File Members
All
e
g
i
o
t
v
Macros
e
g
i
o
t
v
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
IceUtil
ResourceConfig.h
Go to the documentation of this file.
1
//
2
// Copyright (c) ZeroC, Inc. All rights reserved.
3
//
4
5
#ifndef ICE_UTIL_RESOURCE_CONFIG_H
6
#define ICE_UTIL_RESOURCE_CONFIG_H
7
8
#include "winver.h"
9
10
#define ICE_VERSION 3,7,10,0
11
#define ICE_STRING_VERSION "3.7.10\0"
12
#define ICE_SO_VERSION "37\0"
13
#define ICE_COMPANY_NAME "ZeroC, Inc.\0"
14
#define ICE_COPYRIGHT "\251 ZeroC, Inc.\0"
15
#define ICE_PRODUCT_NAME "Ice\0"
16
17
#ifdef ICE_CPP11_MAPPING
18
# if defined(_DEBUG)
19
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "++11D"
20
# else
21
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "++11"
22
# endif
23
#else
24
# if defined(_DEBUG)
25
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION "D"
26
# else
27
# define ICE_LIBNAME(NAME) NAME ICE_SO_VERSION ""
28
# endif
29
#endif
30
31
#ifndef DEBUG
32
# define VER_DEBUG 0
33
#else
34
# define VER_DEBUG VS_FF_DEBUG
35
#endif
36
37
#endif
Generated by
1.8.20