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
333 B

4 years ago
  1. #ifndef __PROPOPT_H__
  2. #define __PROPOPT_H__
  3. #ifndef __PROP_H__
  4. #include "prop.h"
  5. #endif
  6. // Class for Options property sheet.
  7. class CPropOptions : public CProp
  8. {
  9. public:
  10. CPropOptions(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  11. virtual void PreDoModal();
  12. void EnableOverviewButton(DWORD dwHelpID);
  13. };
  14. #endif