ReactOS 0.4.15-dev-7953-g1f49173
machine.h
Go to the documentation of this file.
1#ifndef _REACTOS_ELF_MACHINE_H_
2#define _REACTOS_ELF_MACHINE_H_ 1
3
4#ifdef _M_IX86
5#define _REACTOS_ELF_MACHINE_IS_TARGET
6#include <elf/elf-i386.h>
7#undef _REACTOS_ELF_MACHINE_IS_TARGET
8#elif defined(_M_PPC)
9#define _REACTOS_ELF_MACHINE_IS_TARGET
10#include <elf/elf-powerpc.h>
11#undef _REACTOS_ELF_MACHINE_IS_TARGET
12#else
13#error Unsupported target architecture
14#endif
15
16#endif