[ros-diffs] [tkreuzer] 48186: [NDK] Include the correct mmtypes.h for amd64

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Thu Jul 22 15:18:56 UTC 2010


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?rev=48186&r1=48185&r2=48186&view=diff
==============================================================================
--- 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




More information about the Ros-diffs mailing list