Added ppc switches
[reactos.git] / reactos / include / ndk / arch / mmtypes.h
1 /*++ NDK Version: 0095
2
3 Copyright (c) Alex Ionescu. All rights reserved.
4
5 Header Name:
6
7 mmtypes.h (ARCH)
8
9 Abstract:
10
11 Portability file to choose the correct Architecture-specific file.
12
13 Author:
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 #ifdef _M_IX86
26 #include <i386/mmtypes.h>
27 #elif defined(_M_PPC)
28 #include <powerpc/mmtypes.h>
29 #else
30 #error "Unknown processor"
31 #endif
32
33 #endif