estdlg.h
上传用户:hy11688
上传日期:2007-01-08
资源大小:81k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // estdlg.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CEstDlg dialog
  5. #ifndef __CONNDLG_H
  6. #define __CONNDLG_H
  7. class CEstDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11. CEstDlg(CTCPSocket *ptsEst,LPCSTR pszON,CWnd* pParent = NULL,SOCKET sockEst=ESTSOCKET);   // standard constructor
  12. CTCPSocket *m_ptsEst;
  13. CString m_szON;
  14. BOOL m_fInitListen;
  15. // Dialog Data
  16. //{{AFX_DATA(CEstDlg)
  17. CStatic m_staOne;
  18. CButton m_raConnect;
  19. CEdit m_edOtherName;
  20. //}}AFX_DATA
  21. protected:
  22.     int m_iTimer;
  23. SOCKET m_sockEst;
  24.     void OnOK(){OnEffect();};
  25. void OnCancel();
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CEstDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. afx_msg LONG OnWSAAccept(UINT uP,LONG lP);
  35. // Generated message map functions
  36. //{{AFX_MSG(CEstDlg)
  37. afx_msg void OnEffect();
  38. virtual BOOL OnInitDialog();
  39. afx_msg void OnTimer(UINT nIDEvent);
  40. afx_msg void OnConnect();
  41. afx_msg void OnListen();
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. #endif