windows-nt/Source/XPSP1/NT/admin/pchealth/sysinfo/msconfig/control/msconfigstate.h
2020-09-26 16:20:57 +08:00

17 lines
623 B
C++

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