代建成 发表于 2023-1-5 18:23:53

编译报错,显示头文件里面的变量并未命名为变量

#include <WinBase.h>
#include <stdlib.h>
int main() {

WinExec("F:/1/bin/opensees.exe F:/1/bin/model1.tcl",WM_SHOWWINDOW);
}



14        5        D:\Dev-C++\Dev-Cpp\MinGW64\x86_64-w64-mingw32\include\minwinbase.h        'DWORD' does not name a type
15        5        D:\Dev-C++\Dev-Cpp\MinGW64\x86_64-w64-mingw32\include\minwinbase.h        'LPVOID' does not name a type

报错还有很多都是 ‘xxx’ does not name a type这种类型

人造人 发表于 2023-1-5 18:53:24

你的编译环境问题吧
或者你不要 #include <WinBase.h>
试试 #include <windows.h>

代建成 发表于 2023-1-5 19:33:21

人造人 发表于 2023-1-5 18:53
你的编译环境问题吧
或者你不要 #include
试试 #include

解决了,谢谢大佬
页: [1]
查看完整版本: 编译报错,显示头文件里面的变量并未命名为变量