Client.h
上传用户:bsw_2008
上传日期:2013-07-09
资源大小:2446k
文件大小:1k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // Client.h: interface for the CClient class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CLIENT_H__E01B758D_B4C6_49B4_B7FA_1DC3EF8CB2A5__INCLUDED_)
  5. #define AFX_CLIENT_H__E01B758D_B4C6_49B4_B7FA_1DC3EF8CB2A5__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "winsock.h"
  10. class CClient  
  11. {
  12. public:
  13. CString m_strServer;
  14. SOCKET m_hSocket;
  15. sockaddr_in m_addr;
  16. UINT m_uPort;
  17. HWND m_hWnd;
  18. void SendString(CString a);
  19. void GetString(CString &str);
  20. BOOL InitAndConnect(HWND hWnd,UINT port,CString strServer);
  21. CClient();
  22. virtual ~CClient();
  23. private:
  24. void ClientInit();
  25. };
  26. #endif // !defined(AFX_CLIENT_H__E01B758D_B4C6_49B4_B7FA_1DC3EF8CB2A5__INCLUDED_)