ReactOS 0.4.15-dev-7953-g1f49173
elf.h
Go to the documentation of this file.
1#ifndef _REACTOS_ELF_H_
2#define _REACTOS_ELF_H_ 1
3
4/* Machine-independent and word-size-independent definitions */
5#include <elf/common.h>
6
7/*
8 * Word-size-dependent definitions. All ReactOS builds support all of them,
9 * even if (obviously) code for the wrong architecture cannot be executed - the
10 * files can still be used in machine-independent ways, e.g. as resource DLLs
11 */
12#include <elf/elf32.h>
13#include <elf/elf64.h>
14
15/* Machine-dependent definitions */
16#include <elf/machine.h>
17
18#endif
19
20/* EOF */