mirror of https://github.com/tongzx/nt5src
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.
17 lines
623 B
17 lines
623 B
//=============================================================================
|
|
// 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?
|
|
};
|