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

IP电话/视频会议

开发平台:

Visual C++

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