RequestFriendDetail.cpp
上传用户:guangzhiyw
上传日期:2007-01-09
资源大小:495k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "msg.h"
  3. #include "common.h"
  4. #include "Client.h"
  5. UINT RequestFriendDetail(LPVOID param)
  6. {
  7. CClientApp* pApp=(CClientApp*)AfxGetApp();
  8. Sleep(4000);
  9. for(int i=0;i<pApp->m_aUserInfo.GetSize()&&pApp->m_bOnlineState;i++)
  10. {
  11. if(pApp->m_aUserInfo.GetAt(i)->HaveDetail==0)
  12. {
  13. CMsg1 msg;
  14. msg.index=FRIEND_DETAIL;
  15. msg.MyId=pApp->m_uCurrentUserID;
  16. msg.tarIP=pApp->m_uServerIP;
  17. msg.nPort=pApp->m_uServerPort;
  18. msg.FriendId=pApp->m_aUserInfo.GetAt(i)->Id;
  19. pApp->m_Socket.SendDataDirect(&msg);
  20. Sleep(2000);
  21. }
  22. }
  23. return 1;
  24. }