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.

42 lines
1.1 KiB

4 years ago
  1. /************************************************************************
  2. * *
  3. * FORMMAP.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1995 *
  6. * All Rights reserved. *
  7. * *
  8. ************************************************************************/
  9. class CFormMap : public CDialog
  10. {
  11. public:
  12. CFormMap(CHpjDoc* pHpjDoc, CWnd* pParent = NULL);
  13. protected:
  14. virtual void DoDataExchange(CDataExchange* pDX);
  15. CHpjDoc* pDoc;
  16. CListBox* plistbox;
  17. // The following sections are ClassWizard maintained
  18. public:
  19. //{{AFX_DATA(CFormMap)
  20. enum { IDD = IDD_FORM_MAP };
  21. CString m_Prefix;
  22. //}}AFX_DATA
  23. protected:
  24. // Generated message map functions
  25. //{{AFX_MSG(CFormMap)
  26. afx_msg void OnButtonAddMap();
  27. afx_msg void OnButtonEditMap();
  28. afx_msg void OnButtonIncludeMap();
  29. afx_msg void OnButtonRemoveMap();
  30. afx_msg void OnDblclkListMap();
  31. afx_msg void OnBtnOverview();
  32. //}}AFX_MSG
  33. LRESULT OnContextMenu(WPARAM wParam, LPARAM lParam);
  34. LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  35. DECLARE_MESSAGE_MAP()
  36. };