无法解析的外部符 号 [email protected]处理
程序员文章站
2024-01-28 09:07:58
...
详细错误为:: error LNK2019: 无法解析的外部符 号 [email protected],函数 "int __cdecl __scrt_common_main_seh(void)" ([email protected]@YAHXZ) 中引用了该符号
可能主要是主函数入口是main()
,然后dub.sdl
为lflags "-Subsystem:Windows"
,可能不行.先改成:lflags "-Subsystem:Console"
.然后编译成功.但是,有控制台.
所以,可以是main
的问题.再找一下.
这样改:lflags "-Subsystem:Windows" "-entry:mainCRTStartup"
,加个entry:主crt启动
.哦,是入口问题
,以后遇见了,也要类似处理.
同时删除掉下面两个函数后面的A
wndclass.hIcon = LoadIcon(null, IDI_APPLICATION);
wndclass.hCursor = LoadCursor(null, IDC_ARROW);
没必要在函数后面加上A
,加上了反面不认识.