Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
PInviteUserREQ.cpp
Package: 视频会议系统.rar [view]
Upload User: popouu88
Upload Date: 2013-02-11
Package Size: 2894k
Code Size: 1k
Category:
VOIP program
Development Platform:
Visual C++
- // PInviteUserREQ.cpp: implementation of the PInviteUserREQ class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "PInviteUserREQ.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- PInviteUserREQ::PInviteUserREQ()
- {
- this->Tag = PInviteUserREQTAG;
- this->charement_id = 0;
- this->user_id = 0;
- this->prompt = false;
- }
- PInviteUserREQ::~PInviteUserREQ()
- {
- }
- bool PInviteUserREQ::assembleData( int charement_id , int user_id , bool prompt )
- {
- this->buffer.Resize( 5 * INT_SIZE );
- char * now = this->buffer.GetBuffer( );
- *( int * )now = this->buffer.GetSize( ); now += INT_SIZE;
- *( int * )now = this->Tag; now += INT_SIZE;
- *( int * )now = charement_id ; now += INT_SIZE;
- *( int * )now = user_id; now += INT_SIZE;
- *( int * )now = ( int )prompt;
- return true;
- }
- bool PInviteUserREQ::parseData( CBuffer & buffer )
- {
- if( ! buffer.GetSize( ) ) return false;
- char * now = buffer.GetBuffer( ) + 2 * INT_SIZE;
- this->charement_id = *( int * )now; now += INT_SIZE;
- this->user_id = *( int * )now; now += INT_SIZE;
- this->prompt = ( bool ) * ( int * )now;
- return true;
- }