ReactOS
0.4.16-dev-570-g1868985
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
generic.h
Go to the documentation of this file.
1
/*-
2
* Copyright (c) 1998 John D. Polstra.
3
* All rights reserved.
4
*
5
* Redistribution and use in source and binary forms, with or without
6
* modification, are permitted provided that the following conditions
7
* are met:
8
* 1. Redistributions of source code must retain the above copyright
9
* notice, this list of conditions and the following disclaimer.
10
* 2. Redistributions in binary form must reproduce the above copyright
11
* notice, this list of conditions and the following disclaimer in the
12
* documentation and/or other materials provided with the distribution.
13
*
14
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24
* SUCH DAMAGE.
25
*
26
* $FreeBSD: src/sys/sys/elf_generic.h,v 1.6 2002/07/20 02:56:11 peter Exp $
27
*/
28
29
#ifndef _SYS_ELF_GENERIC_H_
30
#define _SYS_ELF_GENERIC_H_ 1
31
32
/* [REACTOS] TODO: we need to define this somewhere global */
33
#define __ELF_CONCAT1(x,y) x ## y
34
#define __ELF_CONCAT(x,y) __ELF_CONCAT1(x,y)
35
36
/*
37
* Definitions of generic ELF names which relieve applications from
38
* needing to know the word size.
39
*/
40
41
#if __ELF_WORD_SIZE != 32 && __ELF_WORD_SIZE != 64
42
#error "__ELF_WORD_SIZE must be defined as 32 or 64"
43
#endif
44
45
#define ELF_CLASS __ELF_CONCAT(ELFCLASS,__ELF_WORD_SIZE)
46
47
#if 0
48
#if BYTE_ORDER == LITTLE_ENDIAN
49
#define ELF_DATA ELFDATA2LSB
50
#elif BYTE_ORDER == BIG_ENDIAN
51
#define ELF_DATA ELFDATA2MSB
52
#else
53
#error "Unknown byte order"
54
#endif
55
#else
56
/* [REACTOS] FIXME: we need to add this to our build system */
57
#define ELF_DATA ELFDATA2LSB
58
#endif
59
60
#define __elfN(x) __ELF_CONCAT(__ELF_CONCAT(__ELF_CONCAT(elf,__ELF_WORD_SIZE),_),x)
61
#define __ElfN(x) __ELF_CONCAT(__ELF_CONCAT(__ELF_CONCAT(Elf,__ELF_WORD_SIZE),_),x)
62
#define __ELFN(x) __ELF_CONCAT(__ELF_CONCAT(__ELF_CONCAT(ELF,__ELF_WORD_SIZE),_),x)
63
#define __ElfType(x) typedef __ElfN(x) __ELF_CONCAT(Elf_,x)
64
65
__ElfType
(Addr);
66
__ElfType
(Half);
67
__ElfType
(Off);
68
__ElfType
(Sword);
69
__ElfType
(Word);
70
__ElfType
(
Size
);
71
__ElfType
(Hashelt);
72
__ElfType
(Ehdr);
73
__ElfType
(Shdr);
74
__ElfType
(Phdr);
75
__ElfType
(Dyn);
76
__ElfType
(Rel);
77
__ElfType
(Rela);
78
__ElfType
(Sym);
79
80
#define ELF_R_SYM __ELFN(R_SYM)
81
#define ELF_R_TYPE __ELFN(R_TYPE)
82
#define ELF_R_INFO __ELFN(R_INFO)
83
#define ELF_ST_BIND __ELFN(ST_BIND)
84
#define ELF_ST_TYPE __ELFN(ST_TYPE)
85
#define ELF_ST_INFO __ELFN(ST_INFO)
86
87
#endif
/* !_SYS_ELF_GENERIC_H_ */
__ElfType
#define __ElfType(x)
Definition:
generic.h:63
Size
_Must_inspect_result_ _In_ WDFDEVICE _In_ PWDF_DEVICE_PROPERTY_DATA _In_ DEVPROPTYPE _In_ ULONG Size
Definition:
wdfdevice.h:4533
sdk
include
reactos
elf
generic.h
Generated on Wed Jan 22 2025 06:12:58 for ReactOS by
1.9.6