ReactOS 0.4.15-dev-7842-g558ab78
mmtypes.h
Go to the documentation of this file.
1/*++ NDK Version: 0095
2
3Copyright (c) Alex Ionescu. All rights reserved.
4
5Header Name:
6
7 mmtypes.h (ARCH)
8
9Abstract:
10
11 Portability file to choose the correct Architecture-specific file.
12
13Author:
14
15 Alex Ionescu (alex.ionescu@reactos.com) 06-Oct-2004
16
17--*/
18
19#ifndef _ARCH_MMTYPES_H
20#define _ARCH_MMTYPES_H
21
22//
23// Include the right file for this architecture.
24//
25#if defined(_M_IX86)
26#include <i386/mmtypes.h>
27#elif defined(_M_PPC)
28#include <powerpc/mmtypes.h>
29#elif defined(_M_ARM)
30#include <arm/mmtypes.h>
31#elif defined(_M_AMD64)
32#include <amd64/mmtypes.h>
33#elif defined(_M_ARM64)
34#include <arm64/mmtypes.h>
35#else
36#error "Unknown processor"
37#endif
38
39#endif