ReactOS
0.4.16-dev-1098-g0ca6002
Toggle main menu visibility
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Variables
_
c
d
e
f
g
h
i
l
m
n
o
p
s
t
u
x
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
x
Enumerations
_
a
b
c
d
f
i
l
m
o
p
s
t
w
x
Enumerator
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
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
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
h
i
k
l
m
n
o
p
r
s
t
u
v
w
z
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
v
x
Files
File List
File 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
x
y
z
Functions
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Examples
_auto_link.h
Go to the documentation of this file.
1
/* We do not use auto link feature when:
2
* - user asked not to use it (_STLP_DONT_USE_AUTO_LINK)
3
* - STLport is used only as a STL library (_STLP_NO_IOSTREAMS || _STLP_USE_NO_IOSTREAMS)
4
* - we are building a C translation unit, STLport is a C++ Standard library implementation
5
*/
6
#if !defined (__BUILDING_STLPORT) && !defined (_STLP_DONT_USE_AUTO_LINK) && \
7
!defined (_STLP_NO_IOSTREAMS) && !defined (_STLP_USE_NO_IOSTREAMS) && \
8
defined (__cplusplus)
9
10
# define _STLP_STRINGIZE(X) _STLP_STRINGIZE_AUX(X)
11
# define _STLP_STRINGIZE_AUX(X) #X
12
13
# if defined (_STLP_DEBUG)
14
# define _STLP_LIB_OPTIM_MODE "stld"
15
# elif defined (_DEBUG)
16
# define _STLP_LIB_OPTIM_MODE "d"
17
# else
18
# define _STLP_LIB_OPTIM_MODE ""
19
# endif
20
21
# if defined (_STLP_LIB_NAME_MOTIF)
22
# define _STLP_LIB_MOTIF "_"
_STLP_LIB_NAME_MOTIF
23
# else
24
# define _STLP_LIB_MOTIF ""
25
# endif
26
27
# if defined (_STLP_USE_DYNAMIC_LIB)
28
# if defined (_STLP_USING_CROSS_NATIVE_RUNTIME_LIB)
29
# define _STLP_LIB_TYPE "_x"
30
# else
31
# define _STLP_LIB_TYPE ""
32
# endif
33
# else
34
# if defined (_STLP_USING_CROSS_NATIVE_RUNTIME_LIB)
35
# define _STLP_LIB_TYPE "_statix"
36
# else
37
# define _STLP_LIB_TYPE "_static"
38
# endif
39
# endif
40
41
# if defined (_STLP_USE_DYNAMIC_LIB)
42
# define _STLP_VERSION_STR "."
_STLP_STRINGIZE(_STLPORT_MAJOR)"."_STLP_STRINGIZE(_STLPORT_MINOR)
43
# else
44
# define _STLP_VERSION_STR ""
45
# endif
46
47
# define _STLP_STLPORT_LIB "stlport"
_STLP_LIB_OPTIM_MODE""_STLP_LIB_TYPE""_STLP_LIB_MOTIF""_STLP_VERSION_STR".lib"
48
49
# if defined (_STLP_VERBOSE)
50
# pragma message ("STLport: Auto linking to "
_STLP_STLPORT_LIB)
51
# endif
52
# pragma comment (lib, _STLP_STLPORT_LIB)
53
54
# undef _STLP_STLPORT_LIB
55
# undef _STLP_LIB_OPTIM_MODE
56
# undef _STLP_LIB_TYPE
57
# undef _STLP_STRINGIZE_AUX
58
# undef _STLP_STRINGIZE
59
60
#endif
/* _STLP_DONT_USE_AUTO_LINK */
61
sdk
include
c++
stlport
stl
config
_auto_link.h
Generated on Wed May 7 2025 06:11:57 for ReactOS by
1.9.6