Windows NT 4.0 source code leak
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
368 B

4 years ago
  1. #ifndef __OPTIONPG_H__
  2. #define __OPTIONPG_H__
  3. // Base class for Options property pages.
  4. class COptionsPage : public CPropertyPage
  5. {
  6. public:
  7. COptionsPage(UINT nIDTemplate);
  8. virtual BOOL OnSetActive();
  9. // We can't use the CDialog::m_nIDHelp because the
  10. // MFC property sheet implementation stores dialog
  11. // template identifiers there.
  12. UINT m_nHelpID;
  13. };
  14. #endif