摘要: // RemoteThread.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> #include <Windows.h> #include <e 阅读全文
posted @ 2020-08-21 13:41 Anow 阅读(330) 评论(0) 推荐(0) 编辑
摘要: // tt.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include "pch.h" #include #include typedef LONG NTSTATUS; typedef NTSTATUS *PNTSTATUS; typedef DWOR... 阅读全文
posted @ 2019-06-28 14:12 Anow 阅读(706) 评论(0) 推荐(0) 编辑
摘要: 远程过几个客户现场的环境,只有极少数环境会有这个问题。以前没太在意,今天又遇到一个,真是头大。 通过搜索终于找到问题所在了:与UEFI启动相关。 引用一下微软的网站: https://msdn.microsoft.com/en-us/library/windows/desktop/dn280412( 阅读全文
posted @ 2019-02-20 14:22 Anow 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 自己写的小程序中用到的,网上资料相对还是毕竟全的,这里再整理下。毕竟我也不是很了解ATL,里面估计还是有不少问题的,就当作参考吧。 1.创建ATL工程,这个没什么好讲的。 我对COM组件没什么研究,这边就没勾选COM。 2.Project >> Add New Item >> ATL >> ATL 阅读全文
posted @ 2018-12-25 11:13 Anow 阅读(760) 评论(1) 推荐(0) 编辑
摘要: 项目中遇到的比较奇葩的问题,从网上找到一份源码,https://blog.csdn.net/qq125096885/article/details/70766206 稍微整理了下,VS可以直接编译 阅读全文
posted @ 2018-11-30 16:59 Anow 阅读(3304) 评论(0) 推荐(1) 编辑
摘要: 首先:强调一个概念定义一个函数为虚函数,不代表函数为不被实现的函数。定义他为虚函数是为了允许用基类的指针来调用子类的这个函数。定义一个函数为纯虚函数,才代表函数没有被实现。定义纯虚函数是为了实现一个接口,起到一个规范的作用,规范继承这个类的程序员必须实现这个函数。1、简介假设我们有下面的类层次: 这 阅读全文
posted @ 2018-11-14 16:28 Anow 阅读(340) 评论(0) 推荐(0) 编辑
摘要: 1.选择目录 2.拖拽文件 3.遍历文件夹 阅读全文
posted @ 2017-10-11 14:29 Anow 阅读(580) 评论(0) 推荐(0) 编辑