Example1Dlg.h
上传用户:sycq158
上传日期:2008-10-22
资源大小:15361k
文件大小:2k
源码类别:

游戏

开发平台:

Visual C++

  1. // Example1Dlg.h : header file
  2. //
  3. #if !defined(AFX_EXAMPLE1DLG_H__C0F5FDF4_B722_4D2E_910B_CA551035131E__INCLUDED_)
  4. #define AFX_EXAMPLE1DLG_H__C0F5FDF4_B722_4D2E_910B_CA551035131E__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include "Server.h"
  9. #include "Client.h"
  10. #include <afxtempl.h>
  11. #define SER_MESSAGE WM_USER + 100
  12. #define CLI_MESSAGE WM_USER + 101
  13. typedef CList <SOCKET,SOCKET&> SOCKET_ARRAY;
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CExample1Dlg dialog
  16. class CExample1Dlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. CExample1Dlg(CWnd* pParent = NULL); // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CExample1Dlg)
  23. enum { IDD = IDD_EXAMPLE1_DIALOG };
  24. CIPAddressCtrl m_ServerIp;
  25. UINT m_uPort;
  26. CString m_sShowText;
  27. CString m_sInputText;
  28. //}}AFX_DATA
  29. public:
  30. CServer m_server;
  31. CClient m_client;
  32. BOOL m_bInit;
  33. BOOL m_bClient;
  34. SOCKET_ARRAY m_connectionList;
  35. // ClassWizard generated virtual function overrides
  36. //{{AFX_VIRTUAL(CExample1Dlg)
  37. protected:
  38. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. protected:
  42. HICON m_hIcon;
  43. // Generated message map functions
  44. //{{AFX_MSG(CExample1Dlg)
  45. virtual BOOL OnInitDialog();
  46. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  47. afx_msg void OnPaint();
  48. afx_msg HCURSOR OnQueryDragIcon();
  49. afx_msg void OnConnect();
  50. afx_msg void OnSetserver();
  51. afx_msg void OnInputText();
  52. afx_msg LRESULT OnServerMessage(WPARAM wParam, LPARAM lParam);
  53. afx_msg LRESULT OnClientMessage(WPARAM wParam, LPARAM lParam);
  54. //}}AFX_MSG
  55. DECLARE_MESSAGE_MAP()
  56. };
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_EXAMPLE1DLG_H__C0F5FDF4_B722_4D2E_910B_CA551035131E__INCLUDED_)