Add architecture-specific headers and move I386-specific definitions into them.
[reactos.git] / reactos / include / ndk / arch / mmtypes.h
1 /*
2 * PROJECT: ReactOS Native Headers
3 * FILE: include/ndk/arch/mmtypes.h
4 * PURPOSE: Architecture-specific definitions for Memory Manager Types
5 * PROGRAMMER: Alex Ionescu (alex@relsoft.net)
6 * UPDATE HISTORY:
7 * Created 06/10/04
8 */
9 #ifndef _ARCH_MMTYPES_H
10 #define _ARCH_MMTYPES_H
11
12 #ifdef _M_IX86
13 #include <ndk/i386/mmtypes.h>
14 #else
15 #error "Unknown processor"
16 #endif
17
18 #endif