DlgEnv.h
上传用户:tianheyiqi
上传日期:2010-04-16
资源大小:282k
文件大小:1k
源码类别:

外挂编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGENV_H__249C2F2E_1F04_476C_8584_C9B75D1F1C90__INCLUDED_)
  2. #define AFX_DLGENV_H__249C2F2E_1F04_476C_8584_C9B75D1F1C90__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgEnv.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgEnv dialog
  10. class CDlgEnv : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void RefreshPlayer();
  15. void RefreshItem();
  16. CDlgEnv(CWnd* pParent = NULL);   // standard constructor
  17. void RefreshMonster();
  18. // Dialog Data
  19. //{{AFX_DATA(CDlgEnv)
  20. enum { IDD = IDD_DLG_ENV };
  21. CListCtrl m_lstPortals;
  22. CListCtrl m_lstPlayers;
  23. CListCtrl m_lstNpcs;
  24. CListCtrl m_lstMonsters;
  25. CListCtrl m_lstItems;
  26. CTabCtrl m_tabSwitch;
  27. //}}AFX_DATA
  28. // Overrides
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CDlgEnv)
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33. //}}AFX_VIRTUAL
  34. // Implementation
  35. protected:
  36. // Generated message map functions
  37. //{{AFX_MSG(CDlgEnv)
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnSize(UINT nType, int cx, int cy);
  40. afx_msg void OnSelchangeTabSwitch2(NMHDR* pNMHDR, LRESULT* pResult);
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_DLGENV_H__249C2F2E_1F04_476C_8584_C9B75D1F1C90__INCLUDED_)