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.

37 lines
890 B

  1. // editscri.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CEditScript dialog
  5. class CEditScript : public CDialog
  6. {
  7. // Construction
  8. public:
  9. CEditScript(CWnd* pParent, LPCTSTR pchFileExtension, LPCTSTR pchScriptMap); // standard constructor
  10. // Dialog Data
  11. //{{AFX_DATA(CEditScript)
  12. enum { IDD = IDD_EDITSCRIPTDIALOG };
  13. CString m_strFileExtension;
  14. CString m_strScriptMap;
  15. //}}AFX_DATA
  16. LPCTSTR GetFileExtension();
  17. LPCTSTR GetScriptMap();
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CEditScript)
  21. protected:
  22. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. protected:
  26. // Generated message map functions
  27. //{{AFX_MSG(CEditScript)
  28. // NOTE: the ClassWizard will add member functions here
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };