Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
509 B

  1. #pragma once
  2. /*-----------------------------------------------------------------------------
  3. common "code" factored out of FusionWin and FusionUrt
  4. -----------------------------------------------------------------------------*/
  5. #if defined(_X86_)
  6. #define DEFAULT_ARCHITECTURE PROCESSOR_ARCHITECTURE_INTEL
  7. #elif defined(_AMD64_)
  8. #define DEFAULT_ARCHITECTURE PROCESSOR_ARCHITECTURE_AMD64
  9. #elif defined(_IA64_)
  10. #define DEFAULT_ARCHITECTURE PROCESSOR_ARCHITECTURE_IA64
  11. #else
  12. #error Unknown Processor type
  13. #endif