一个简单的问题:
头文件为:
#include <iostream>
#include "stdlib.h"
#include <math.h>
#include <windef.h>
#include <winbase.h>
编译后产生如下错误:
d:\program files\microsoft visual studio\vc98\include\winnt.h(3143) : error C2146: syntax error : missing ';' before identifier 'ContextRecord'
d:\program files\microsoft visual studio\vc98\include\winnt.h(3143) : error C2501: 'PCONTEXT' : missing storage-class or type specifiersd:\program files\microsoft visual studio\vc98\include\winbase.h(715) : fatal error C1004: unexpected end of file found
这里的是因为PCONTEXT未得到定义,而且错误产生在windef.h和winbase.h中,且打开头文件没有发现人为改动产生的错误。
修改:
第一次尝试将winbase.h放到windef.h之前,结果产生更多错误,因此类型符的定义不在这两个文件中。
因此想到是不是缺少头文件的问题,于是在iostream的下面加上加上了不同的头文件,发现windows.h的时候编译可以通过,由此可知windows.h中定义winbase.h和windef.h的一些东西。
(这里如果将windows.h放到winbase.h的下面,错误又会出现)
于是查了一下windows.h,可以看到: