摘要: Windows是一个消息驱动模式的系统,SendMessage 是应用程序和应用程序之间进行消息传递的主要手段之一。由于 SendMessage 函数的参数选项过于繁多,因此很有必要作一个汇总,分门别类地来向大家介绍。 函数声明 LRESULT SendMessage( __in HWND hWnd 阅读全文
posted @ 2022-10-02 13:07 cnetsa 阅读(67) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/m0_63783532/article/details/123833512?utm_medium=distribute.pc_relevant.none-task-blog-2~default~baidujs_baidulandingword~defaul 阅读全文
posted @ 2022-10-02 13:04 cnetsa 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 从文件指针指向的位置开始将数据读出到一个文件中, 且支持同步和异步操作,如果文件打开方式没有指明FILE_FLAG_OVERLAPPED的话,当程序调用成功时,它将实际读出文件的字节数保存到lpBuffer指明的地址空间中。FILE_FLAG_OVERLAPPED 允许对文件进行重叠操作如果文件要交 阅读全文
posted @ 2022-10-02 13:03 cnetsa 阅读(105) 评论(0) 推荐(0) 编辑
摘要: ZeroMemory是一个计算机函数,由美国微软公司的软件开发包SDK中的一个宏。 其作用是用0来填充一块内存区域。 声明void ZeroMemory( PVOID Destination,SIZE_T Length );参数Destination :指向一块准备用0来填充的内存区域的开始地址。L 阅读全文
posted @ 2022-10-02 13:03 cnetsa 阅读(231) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/fuhanghang/article/details/112988299 BOOL CreateProcess(LPCTSTR lpApplicationName,LPTSTR lpCommandLine,LPSECURITY_ATTRIBUTES lpP 阅读全文
posted @ 2022-10-02 13:03 cnetsa 阅读(20) 评论(0) 推荐(0) 编辑
摘要: CreateFileA( __in LPCSTR lpFileName, __in DWORD dwDesiredAccess, __in DWORD dwShareMode, __in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes, __in DWO 阅读全文
posted @ 2022-10-02 13:02 cnetsa 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 服务相关StartService 阅读全文
posted @ 2022-10-02 13:01 cnetsa 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 服务相关DeleteServic 阅读全文
posted @ 2022-10-02 13:01 cnetsa 阅读(7) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/CreateService/2662500?fr=aladdin SC_HANDLE CreateService(SC_HANDLE hSCManager, //服务控制管理程序维护的登记数据库的句柄,由系统函数OpenSCManager 返 阅读全文
posted @ 2022-10-02 13:01 cnetsa 阅读(81) 评论(0) 推荐(0) 编辑
摘要: https://baike.baidu.com/item/CreateService/2662500?fr=aladdin SC_HANDLE CreateService(SC_HANDLE hSCManager, //服务控制管理程序维护的登记数据库的句柄,由系统函数OpenSCManager 返 阅读全文
posted @ 2022-10-02 13:00 cnetsa 阅读(35) 评论(0) 推荐(0) 编辑
摘要: queue有很多 //////////////////stack 0, // use default stack size 创建线程createThread的第二个参数 vector向量(数组 随机修改 插入 删除 到尾部) std::vector push_back XXXvector.size( 阅读全文
posted @ 2022-10-02 12:59 cnetsa 阅读(19) 评论(0) 推荐(0) 编辑
摘要: CopyFile 阅读全文
posted @ 2022-10-02 12:57 cnetsa 阅读(34) 评论(0) 推荐(0) 编辑
摘要: memcpy(内存拷贝函数) c和c++使用的内存拷贝函数,memcpy函数的功能是从源src所指的内存地址的起始位置开始拷贝n个字节到目标dest所指的内存地址的起始位置中。 https://blog.csdn.net/weixin_39862697/article/details/1119232 阅读全文
posted @ 2022-10-02 12:48 cnetsa 阅读(162) 评论(0) 推荐(0) 编辑
摘要: wsprintf 将一系列的字符和数值输入到缓冲区 函数wsprintf [1] ()将一系列的字符和数值输入到缓冲区。输出缓冲区里的的值取决于格式说明符(即"%")。如果写入的是文字,此函数给写入的文字的末尾追加一个'\0'。函数的返回值是写入的长度,但不包括最后的'\0'。 阅读全文
posted @ 2022-10-02 12:48 cnetsa 阅读(21) 评论(0) 推荐(0) 编辑
摘要: (remove 阅读全文
posted @ 2022-10-02 12:47 cnetsa 阅读(5) 评论(0) 推荐(0) 编辑
摘要: LocalAlloc函数 这个函数从堆中分配指定大小的字节数 LocalAlloc,This function allocates the specified number of bytes from the heap.这个函数从堆中分配指定大小的字节数。 https://baike.baidu.c 阅读全文
posted @ 2022-10-02 12:47 cnetsa 阅读(21) 评论(0) 推荐(0) 编辑
摘要: https://wenku.baidu.com/view/a62a4cca514de518964bcf84b9d528ea80c72f49.html 阅读全文
posted @ 2022-10-02 12:46 cnetsa 阅读(176) 评论(0) 推荐(0) 编辑
摘要: ZwClose 例程关闭对象句柄 ZwClose 函数 (wdm.h)项目2022/04/21 ZwClose 例程关闭对象句柄。 阅读全文
posted @ 2022-10-02 12:45 cnetsa 阅读(31) 评论(0) 推荐(0) 编辑
摘要: nto delete ntohl cout cerr using namespace std; 阅读全文
posted @ 2022-10-02 12:42 cnetsa 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 搜索 .empty 判空 搜索 .pop_back 出栈 控制流输出格式的函数 iomanip 搜索 .back 返回栈顶元素 for_each 算法 find算法 sort算法 容器 vector listset map 控制台暂停 system("pause"); return 0; 缩写 ct 阅读全文
posted @ 2022-10-02 12:40 cnetsa 阅读(15) 评论(0) 推荐(0) 编辑