PInviteUserRES.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:1k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // PInviteUserRES.cpp: implementation of the PInviteUserRES class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "PInviteUserRES.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. PInviteUserRES::PInviteUserRES()
  9. {
  10. this->Tag = PInviteUserRESTAG;
  11. }
  12. PInviteUserRES::~PInviteUserRES()
  13. {
  14. }
  15. bool PInviteUserRES::assembleData( int charement_id , int user_id , int ireturn )
  16. {
  17. this->buffer.Resize( 5 * INT_SIZE );
  18. char * now = this->buffer.GetBuffer( );
  19. *( int * )now = this->buffer.GetSize( ); now += INT_SIZE;
  20. *( int * )now = this->Tag; now += INT_SIZE;
  21. *( int * )now = charement_id ; now += INT_SIZE;
  22. *( int * )now = user_id; now += INT_SIZE;
  23. *( int * )now = ireturn;
  24. return true;
  25. }
  26. bool PInviteUserRES::parseData( CBuffer & buffer )
  27. {
  28. if( ! buffer.GetSize( ) ) return false;
  29. char * now = buffer.GetBuffer( ) + 2 * INT_SIZE;
  30. this->charement_id = *( int * )now ; now += INT_SIZE;
  31. this->user_id = *( int * )now; now += INT_SIZE;
  32. this->ireturn = *( int * )now ; now += INT_SIZE;
  33. return true;
  34. }