Windows NT 4.0 source code leak
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.

38 lines
970 B

4 years ago
  1. /************************************************************************
  2. * *
  3. * INCLUDE.CPP *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1995 *
  6. * All Rights reserved. *
  7. * *
  8. ************************************************************************/
  9. class CInclude : public CDialog
  10. {
  11. public:
  12. CInclude(PCSTR pszBaseFile, CString* pcszFile,
  13. CWnd* pParent = NULL);
  14. protected:
  15. virtual void DoDataExchange(CDataExchange* pDX);
  16. CString* pcszSaveFile;
  17. PCSTR pszSaveBase;
  18. // The following sections are ClassWizard maintained
  19. public:
  20. //{{AFX_DATA(CInclude)
  21. enum { IDD = IDD_INCLUDE };
  22. CString m_cszFile;
  23. //}}AFX_DATA
  24. protected:
  25. // Generated message map functions
  26. //{{AFX_MSG(CInclude)
  27. afx_msg void OnButtonBrowseInclude();
  28. //}}AFX_MSG
  29. DECLARE_MESSAGE_MAP()
  30. LRESULT OnContextMenu(WPARAM wParam, LPARAM lParam);
  31. LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  32. };