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.

30 lines
916 B

  1. //#pragma title( "QProcess.hpp - Query type of processor on machine" )
  2. /*
  3. Copyright (c) 1995-1998, Mission Critical Software, Inc. All rights reserved.
  4. ===============================================================================
  5. Module - QProcess.hpp
  6. System - Common
  7. Author - Rich Denham
  8. Created - 1996-11-21
  9. Description - Query type of processor on machine
  10. Updates -
  11. ===============================================================================
  12. */
  13. #ifndef MCSINC_QProcess_hpp
  14. #define MCSINC_QProcess_hpp
  15. // Returned value from QProcessor.
  16. enum ProcessorType
  17. { PROCESSOR_IS_UNKNOWN, PROCESSOR_IS_INTEL, PROCESSOR_IS_ALPHA };
  18. // Determine processor of machine
  19. ProcessorType // ret-processor type
  20. QProcessor(
  21. TCHAR const * machineName // in -Machine name
  22. );
  23. #endif // MCSINC_QProcess_hpp
  24. // QProcess.hpp - end of file