Socket.h
上传用户:garry_shen
上传日期:2015-04-15
资源大小:45647k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. #ifndef __SOCKET
  2. #define __SOCKET
  3. #include <windows.h>
  4. #define CALLWGS "0.0.0.0"
  5. #define WS_ERROR -1
  6. #define WS_OK 0
  7. #define WS_WAIT 1
  8. #define INPUT_SIZE 16384
  9. #define BUF_SIZE 1024
  10. #define MAXHOSTNAME 128
  11. struct SEND_DATA
  12. {
  13. SOCKET hsock;
  14. char *lpstrBuf;
  15. int iLen;
  16. SEND_DATA *next;
  17. };
  18. u_long GetIPAddr(LPTSTR);
  19. SOCKET InitClient(PSOCKADDR_IN,HWND,u_int);
  20. int CloseConn(SOCKET&,LPTSTR,int,HWND);
  21. int SendData(SOCKET,LPTSTR,int);
  22. int RecvData(SOCKET,LPTSTR,int);
  23. #endif