ZAPDLG.H
资源名称:MSDN_VC98.zip [点击查看]
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:
Windows编程
开发平台:
Visual C++
- // zapdlg.h : header file. This dialog allows you to enter which project
- // off of which to base the custom AppWizard.
- //
- // Copyright (c) 1985-1998, Microsoft Corporation. All rights reserved.
- //
- /////////////////////////////////////////////////////////////////////////////
- // CZapDlg dialog
- class CZapDlg : public CAppWizStepDlg
- {
- // Construction
- public:
- CZapDlg(); // standard constructor
- virtual BOOL OnDismiss();
- // Dialog Data
- //{{AFX_DATA(CZapDlg)
- enum { IDD = IDD_ZAP };
- CString m_strProjName;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CZapDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CZapDlg)
- afx_msg void OnBrowse();
- afx_msg void OnPaint();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- enum enProjType { projUnknown, projExe, projDLL, projJava };
- enProjType GetProjectType(LPCTSTR lpszProjName);