global.h
上传用户:swkcbjrc
上传日期:2016-04-02
资源大小:45277k
文件大小:1k
源码类别:

游戏

开发平台:

Visual C++

  1. HWND hwnd;
  2. #define nTotalNum 100
  3. #define WM_SCAN WM_USER+100
  4. #define WM_SCANOVER WM_USER+101
  5. #define WM_SCANSTART WM_USER+102
  6. #define MAXSITE 5000
  7. int nThreadCount,nCurrent,count;
  8. bool blnRunning;
  9. CCriticalSection session;
  10. struct _tagHost 
  11. {
  12. CString strName;
  13. CString strIP;
  14. u_short uPort;
  15. bool bProxy;
  16. CString strProxyName;
  17. CString strProxyIP;
  18. u_short uProxyPort;
  19. bool bFinished;
  20. };
  21. struct _tagThread
  22. {
  23. int nThreadNum; //线程编号
  24. int nThreadFlag; //当前状态 0启动 1 运行 2 结束 3 闲置
  25. CString strMsg;
  26.     struct _tagHost *pHost; //扫描主机信息
  27. };