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.

16 lines
623 B

  1. //=============================================================================
  2. // This file describes a class which is used to store state information for
  3. // MSConfig. A pointer to an instance of this class is passed to each of the
  4. // pages in the tab control - it can be used to coordinate state between
  5. // the pages.
  6. //=============================================================================
  7. #pragma once
  8. class CMSConfigState
  9. {
  10. public:
  11. CMSConfigState() : m_fNTRunning(FALSE), m_f64BitRunning(FALSE) {};
  12. BOOL m_fNTRunning; // are we running under NT?
  13. BOOL m_f64BitRunning; // are we running under 64-bit?
  14. };