Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenmmtypes.h
Go to the documentation of this file.
00001 /*++ NDK Version: 0095 00002 00003 Copyright (c) Alex Ionescu. All rights reserved. 00004 00005 Header Name: 00006 00007 mmtypes.h (ARCH) 00008 00009 Abstract: 00010 00011 Portability file to choose the correct Architecture-specific file. 00012 00013 Author: 00014 00015 Alex Ionescu (alex.ionescu@reactos.com) 06-Oct-2004 00016 00017 --*/ 00018 00019 #ifndef _ARCH_MMTYPES_H 00020 #define _ARCH_MMTYPES_H 00021 00022 // 00023 // Include the right file for this architecture. 00024 // 00025 #if defined(_M_IX86) 00026 #include <i386/mmtypes.h> 00027 #elif defined(_M_PPC) 00028 #include <powerpc/mmtypes.h> 00029 #elif defined(_M_ARM) 00030 #include <arm/mmtypes.h> 00031 #elif defined(_M_AMD64) 00032 #include <amd64/mmtypes.h> 00033 #else 00034 #error "Unknown processor" 00035 #endif 00036 00037 #endif Generated on Sat May 26 2012 04:29:27 for ReactOS by
1.7.6.1
|