假设aBuf指向一段内存:
BYTE* aBuf
我们要获取里面的数据,可如下获取:
char 型数据:
BYTE ClassID=*(aBuf+len);
stDate=(short)(*((char*)(aBuf+len)));
short ,int16型数据:
stDate=(short)htons(*((short*)(aBuf+len)));
int32 型数据:
lDate=(long)htonl(*((long*)(aBuf+len)));
假设aBuf指向一段内存:
BYTE* aBuf
我们要获取里面的数据,可如下获取:
char 型数据:
BYTE ClassID=*(aBuf+len);
stDate=(short)(*((char*)(aBuf+len)));
short ,int16型数据:
stDate=(short)htons(*((short*)(aBuf+len)));
int32 型数据:
lDate=(long)htonl(*((long*)(aBuf+len)));