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.
43 lines
766 B
43 lines
766 B
#ifndef NCGEN_HPP_INCLUDED
|
|
#define NCGEN_HPP_INCLUDED
|
|
|
|
|
|
|
|
class NewClassGeneralPage : public CPropertyPage
|
|
{
|
|
public:
|
|
|
|
NewClassGeneralPage(CreateClassWizardInfo* wi);
|
|
|
|
// ~NewClassGeneralPage();
|
|
|
|
protected:
|
|
|
|
static const DWORD help_map[];
|
|
|
|
BOOL OnHelp(WPARAM wParam, LPARAM lParam) { return ShowHelp( GetSafeHwnd(), wParam, lParam, help_map, FALSE ); };
|
|
BOOL OnContextHelp(WPARAM wParam, LPARAM lParam) { return ShowHelp( GetSafeHwnd(), wParam, lParam, help_map, TRUE ); };
|
|
|
|
virtual
|
|
BOOL
|
|
OnInitDialog();
|
|
|
|
virtual
|
|
BOOL
|
|
OnKillActive();
|
|
|
|
virtual
|
|
BOOL
|
|
OnSetActive();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
private:
|
|
|
|
CParsedEdit m_editOID;
|
|
CreateClassWizardInfo * pWiz_info;
|
|
};
|
|
|
|
|
|
|
|
#endif // NCGEN_HPP_INCLUDED
|