高低位转换之法二---4字节篇
摘要:
对4字节变量转换例子// ConvertData.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"//#define cdr_int32_to(from) \// ( (((from) & (0xfful << 24)) >> 24) \// | (((from) & (0xfful << 16)) >> 8) \// | (((from) & (0xfful << 8)) << 8) \// | (((from) & 0xfful) & 阅读全文
posted @ 2011-11-21 14:18 媳妇是阿东 阅读(957) 评论(0) 推荐(0)