ReactOS
0.4.16-dev-1028-g8602629
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
xmlexports.h
Go to the documentation of this file.
1
/*
2
* Summary: macros for marking symbols as exportable/importable.
3
* Description: macros for marking symbols as exportable/importable.
4
*
5
* Copy: See Copyright for the status of this software.
6
*/
7
8
#ifndef __XML_EXPORTS_H__
9
#define __XML_EXPORTS_H__
10
11
#if defined(_WIN32) || defined(__CYGWIN__)
14
#ifdef LIBXML_STATIC
15
#define XMLPUBLIC
16
#elif defined(IN_LIBXML)
17
#define XMLPUBLIC __declspec(dllexport)
18
#else
19
#define XMLPUBLIC __declspec(dllimport)
20
#endif
21
22
#if defined(LIBXML_FASTCALL)
23
#define XMLCALL __fastcall
24
#else
25
#define XMLCALL __cdecl
26
#endif
27
#define XMLCDECL __cdecl
28
30
#else
/* not Windows */
31
37
#define XMLPUBLIC
38
44
#define XMLCALL
45
52
#define XMLCDECL
53
54
#endif
/* platform switch */
55
56
/*
57
* XMLPUBFUN:
58
*
59
* Macro which declares an exportable function
60
*/
61
#define XMLPUBFUN XMLPUBLIC
62
68
#define XMLPUBVAR XMLPUBLIC extern
69
70
/* Compatibility */
71
#if !defined(LIBXML_DLL_IMPORT)
72
#define LIBXML_DLL_IMPORT XMLPUBVAR
73
#endif
74
75
#endif
/* __XML_EXPORTS_H__ */
76
77
sdk
include
reactos
libs
libxml
xmlexports.h
Generated on Thu Apr 24 2025 06:13:59 for ReactOS by
1.9.6