Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenketypes.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 ketypes.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_KETYPES_H 00020 #define _ARCH_KETYPES_H 00021 00022 // 00023 // Include the right file for this architecture. 00024 // 00025 #ifdef _M_IX86 00026 #include <i386/ketypes.h> 00027 #elif defined(_M_AMD64) 00028 #include <amd64/ketypes.h> 00029 #elif defined(_M_PPC) 00030 #include <powerpc/ketypes.h> 00031 #elif defined(_M_ARM) 00032 #include <arm/ketypes.h> 00033 #else 00034 #error "Unknown processor" 00035 #endif 00036 00037 #endif Generated on Sun May 27 2012 04:30:47 for ReactOS by
1.7.6.1
|