12 2016 档案

摘要:CMarkup成员方法简介 (转) 转自:http://blog.csdn.net/magictong/article/details/6669837翻译:magictong(童磊)2011年7月版权:First Objective Software, Inc. All rights reserve 阅读全文
posted @ 2016-12-29 09:00 wolfplan 阅读(790) 评论(0) 推荐(0)
摘要:转自:http://blog.csdn.net/chy555chy/article 转自:http://blog.csdn.net/chy555chy/article 函数头文件作用 GetVersionEx <windows.h> 获取系统版本信息(deprecated) VerifyVersio 阅读全文
posted @ 2016-12-05 10:14 wolfplan 阅读(4430) 评论(0) 推荐(0)
摘要:一、判断文件夹是否存在: 1.用CreateDirectory(".//FileManege",NULL);如果文件夹FileManege不存在,则创建。 2.或者if(_access(".//FileManege",0) 1),表示FileManege不存在。 3.或者BOOL PathIsDir 阅读全文
posted @ 2016-12-04 14:56 wolfplan 阅读(35254) 评论(0) 推荐(0)
摘要:void ByteToBit(bool *Out,char *In,int bits) //字节到位的转换{ int i; for(i=0;i<bits;i++) Out[i]=(In[i/8]>>(i%8))&1; //这一步实现原理是什么,看了很久都不明白.In[i/8]意思是? } void 阅读全文
posted @ 2016-12-03 17:09 wolfplan 阅读(3714) 评论(0) 推荐(0)