Author: tkreuzer
Date: Thu Jul 22 15:18:55 2010
New Revision: 48186
URL:
http://svn.reactos.org/svn/reactos?rev=48186&view=rev
Log:
[NDK]
Include the correct mmtypes.h for amd64
Modified:
trunk/reactos/include/ndk/arch/mmtypes.h
Modified: trunk/reactos/include/ndk/arch/mmtypes.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/include/ndk/arch/mmtypes.h…
==============================================================================
--- trunk/reactos/include/ndk/arch/mmtypes.h [iso-8859-1] (original)
+++ trunk/reactos/include/ndk/arch/mmtypes.h [iso-8859-1] Thu Jul 22 15:18:55 2010
@@ -22,12 +22,14 @@
//
// Include the right file for this architecture.
//
-#if defined(_M_IX86) || defined(_M_AMD64)
+#if defined(_M_IX86)
#include <i386/mmtypes.h>
#elif defined(_M_PPC)
#include <powerpc/mmtypes.h>
#elif defined(_M_ARM)
#include <arm/mmtypes.h>
+#elif defined(_M_AMD64)
+#include <amd64/mmtypes.h>
#else
#error "Unknown processor"
#endif