Counter Strike : Global Offensive Source Code
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.

45 lines
1.0 KiB

  1. //========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============//
  2. //
  3. // Purpose:
  4. //
  5. // $NoKeywords: $
  6. //
  7. //=============================================================================//
  8. // MapErrorsDlg.h : header file
  9. //
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMapErrorsDlg dialog
  12. class CMapErrorsDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CMapErrorsDlg(CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CMapErrorsDlg)
  19. enum { IDD = IDD_MAPERRORS };
  20. CListBox m_cErrors;
  21. //}}AFX_DATA
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMapErrorsDlg)
  25. protected:
  26. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. protected:
  30. // Generated message map functions
  31. //{{AFX_MSG(CMapErrorsDlg)
  32. afx_msg void OnClear();
  33. afx_msg void OnDblclkErrors();
  34. afx_msg void OnView();
  35. virtual BOOL OnInitDialog();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };