1.error C3861: “_T”: 找不到标识符
#include <tchar.h>
2.error C3861: “time”: 找不到标识符
查看代码,发现已经包含了 time.h 头文件,不应该报这个错误啊。
找了半天,发现项目文件中有一个叫 Time.h 的头文件,可能是和vs自带的time.h冲突了。
将该 Time.h 头文件改名为 MyTime.h 之后,再把原来引用 Time.h 的地方 替换成 MyTime.h 就好了。
3.“ifstream” 未声明的标识符
#include <fstream>
还要加入:
using namespace std;
4.error C2065: “BYTE”: 未声明的标识符
#include <Windows.h>
时间: 2024-10-15 13:11:28