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.

43 lines
766 B

  1. #ifndef NCGEN_HPP_INCLUDED
  2. #define NCGEN_HPP_INCLUDED
  3. class NewClassGeneralPage : public CPropertyPage
  4. {
  5. public:
  6. NewClassGeneralPage(CreateClassWizardInfo* wi);
  7. // ~NewClassGeneralPage();
  8. protected:
  9. static const DWORD help_map[];
  10. BOOL OnHelp(WPARAM wParam, LPARAM lParam) { return ShowHelp( GetSafeHwnd(), wParam, lParam, help_map, FALSE ); };
  11. BOOL OnContextHelp(WPARAM wParam, LPARAM lParam) { return ShowHelp( GetSafeHwnd(), wParam, lParam, help_map, TRUE ); };
  12. virtual
  13. BOOL
  14. OnInitDialog();
  15. virtual
  16. BOOL
  17. OnKillActive();
  18. virtual
  19. BOOL
  20. OnSetActive();
  21. DECLARE_MESSAGE_MAP()
  22. private:
  23. CParsedEdit m_editOID;
  24. CreateClassWizardInfo * pWiz_info;
  25. };
  26. #endif // NCGEN_HPP_INCLUDED