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.

47 lines
1.2 KiB

  1. /*************************************************
  2. * statis.h *
  3. * *
  4. * Copyright (C) 1995-1999 Microsoft Inc. *
  5. * *
  6. *************************************************/
  7. // statis.h : header file
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CStatisticDlg dialog
  11. class CBlockDoc;
  12. class CStatisticDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CStatisticDlg(CBlockDoc* pDoc,CWnd* pParent = NULL); // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CStatisticDlg)
  19. enum { IDD = IDD_STATISTIC };
  20. CString m_nHitWordInAir;
  21. CString m_nHitWordInGround;
  22. CString m_nMissHit;
  23. CString m_nTotalHitWord;
  24. CString m_nTotalWord;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CStatisticDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. CBlockDoc* m_pDoc;
  35. // Generated message map functions
  36. //{{AFX_MSG(CStatisticDlg)
  37. virtual BOOL OnInitDialog();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };