上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: HTTP协议通信原理 阅读全文
posted @ 2018-09-20 16:24 黑马网仔 阅读(447) 评论(0) 推荐(0) 编辑
摘要: 来源 文件系统Minifilter驱动(一) 文件系统Minifilter驱动(二) 文件系统Minifilter驱动(三) 文件系统Minifilter驱动(四) 文件系统Minifilter驱动(五) 文件系统Minifilter驱动(六) 文件系统Minifilter驱动(七) 文件系统Min 阅读全文
posted @ 2018-09-17 09:43 黑马网仔 阅读(351) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/9aa66f634ed6 阅读全文
posted @ 2018-09-17 09:16 黑马网仔 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 针对数组中有大量重复数优化 example // 1,3,4,7,7,7,17,11,1,7 阅读全文
posted @ 2018-09-16 10:58 黑马网仔 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 1 // encryptServiceManage.cpp: 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <Windows.h> 6 #include <winsvc.h> 7 #include <winioctl.h> 8 9 10 阅读全文
posted @ 2018-09-10 18:43 黑马网仔 阅读(325) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/bcbobo21cn/article/details/50637296 阅读全文
posted @ 2018-08-23 16:26 黑马网仔 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 制作C/C++动态链接库(dll)若干注意事项 阅读全文
posted @ 2018-08-21 16:26 黑马网仔 阅读(173) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 5 #define MAX_LENGTH 11 6 7 void CutRod(int * P, int p_last, int * R, int r_last); 8 9 10 int main() 11 { 12 int P[MAX_LENGTH] = { 0,1,5,8,9,10,... 阅读全文
posted @ 2018-07-31 10:47 黑马网仔 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 1 //obj.h 2 3 #include 4 #include 5 #include 6 7 typedef struct Obj Obj; 8 9 Obj * CreateObject(int id, const char * name); 10 11 void PrintObject(Obj * obj); 12 13 int GetId(Obj * o... 阅读全文
posted @ 2018-07-30 17:37 黑马网仔 阅读(285) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/dengziliang001/article/details/17448789 (1) _stdcall调用 _stdcall是Pascal程序的缺省调用方式,参数采用从右到左的压栈方式,被调函数自身在返回前清空堆栈。 WIN32 Api都采用_stdca 阅读全文
posted @ 2018-07-27 11:53 黑马网仔 阅读(104) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页