예제 #1
0
void DumpPacketBin(uint8 data) {
	DumpPacketBin((uchar*)&data, sizeof(uint8));
}
예제 #2
0
void DumpPacketBin(const BasePacket* app) {
	DumpPacketBin(app->pBuffer, app->size);
}
예제 #3
0
void DumpPacketBin(const ServerPacket* pack) {
	DumpPacketBin(pack->pBuffer, pack->size);
}