上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 转自:http://www.wxzzz.com/711.html http://sebastien.lebreton.free.fr/reflexil/ http://www.aneasystone.com/archives/2015/06/net-reverse-decompiling.html 阅读全文
posted @ 2017-02-23 23:19 wolfplan 阅读(561) 评论(0) 推荐(0) 编辑
摘要: CV_IMAGE_ELEM 是一个宏函数,基本形式: CV_IMAGE_ELEM(image,elemtype,row,col) 其中,image为指针数组,elemtype为数据的存取类型,row为图像的高度,范围:0~height;col为图像的宽度,范围:0~width (height = c 阅读全文
posted @ 2017-02-22 09:30 wolfplan 阅读(1011) 评论(0) 推荐(0) 编辑
摘要: 转自 http://blog.csdn.net/pbymw8iwm/article/details/6931946 1.简介 CRegKey提供了对系统注册表的操作方法,通过CRegKey类,可以方便的打开注册表的某个分支或子键(CRegKey::Open),可以方便的修改一个键的键值(CRegKe 阅读全文
posted @ 2017-02-10 17:53 wolfplan 阅读(3310) 评论(0) 推荐(0) 编辑
摘要: 转自 http://www.cnblogs.com/lidabo/archive/2012/07/10/2584725.html 可以用GetSystemMetrics函数可以获取系统分辨率,但这只是其功能之一,GetSystemMetrics函数只有一个参数,称之为「索引」,这个索引有75个标识符 阅读全文
posted @ 2017-02-04 16:44 wolfplan 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 转自 http://blog.csdn.net/skyloveyue/article/details/52105912 我用使用了第二种方法: 改变项目的位置 将项目从原来D盘的位置(D:\project\VC\VC2013),复制到了E盘下的一个文件夹(E:\Project) ,然后用VS2013 阅读全文
posted @ 2017-01-14 08:44 wolfplan 阅读(1236) 评论(0) 推荐(0) 编辑
摘要: http://blog.163.com/zhoumhan_0351/blog/static/399542272010225104536463 Vector 像一个快速的数组,其具有数组的快速索引方式。还具有动态地进行扩展。 Vector 的特点 1.索引和迭代器非常快,这个是结合了数组的特点,其低层 阅读全文
posted @ 2017-01-13 16:09 wolfplan 阅读(427) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(755) 评论(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 阅读(4352) 评论(0) 推荐(0) 编辑
摘要: 一、判断文件夹是否存在: 1.用CreateDirectory(".//FileManege",NULL);如果文件夹FileManege不存在,则创建。 2.或者if(_access(".//FileManege",0) 1),表示FileManege不存在。 3.或者BOOL PathIsDir 阅读全文
posted @ 2016-12-04 14:56 wolfplan 阅读(35044) 评论(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 阅读(3602) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页