MySocket.h
上传用户:chenhai826
上传日期:2007-04-11
资源大小:72k
文件大小:0k
源码类别:

破解

开发平台:

Visual C++

  1. // MySocket.h: interface for the CMySocket class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined __MY_SOCKET__
  5. #define __MY_SOCKET__
  6. class CMySocket  
  7. {
  8. SOCKET m_sock;
  9. public:
  10. CMySocket();
  11. virtual ~CMySocket();
  12. bool Create(void);
  13. void Close(void);
  14. bool Connect(CString &host);
  15. int Send(const char *buf,int buflen);
  16. int Receive(char *buf, int buflen);
  17. };
  18. #endif