ZAPDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // zapdlg.h : header file.  This dialog allows you to enter which project
  2. //             off of which to base the custom AppWizard.
  3. //
  4. // Copyright (c) 1985-1998, Microsoft Corporation. All rights reserved.
  5. //
  6. /////////////////////////////////////////////////////////////////////////////
  7. // CZapDlg dialog
  8. class CZapDlg : public CAppWizStepDlg
  9. {
  10. // Construction
  11. public:
  12. CZapDlg();   // standard constructor
  13. virtual BOOL OnDismiss();
  14. // Dialog Data
  15. //{{AFX_DATA(CZapDlg)
  16. enum { IDD = IDD_ZAP };
  17. CString m_strProjName;
  18. //}}AFX_DATA
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CZapDlg)
  22. protected:
  23. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. protected:
  27. // Generated message map functions
  28. //{{AFX_MSG(CZapDlg)
  29. afx_msg void OnBrowse();
  30. afx_msg void OnPaint();
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. };
  34. enum enProjType { projUnknown, projExe, projDLL, projJava };
  35. enProjType GetProjectType(LPCTSTR lpszProjName);