LINK : warning LNK4098: defaultlib "LIBC " conflicts with use of other libs; use /NODEFAULTLIB:library
csp_maplist.obj : error LNK2001: unresolved external symbol _cgiPrefox
Debug/demo.exe : fatal error LNK1120: 1 unresolved externals
很明显这是各连接库文件的错误 ......
请各位大哥帮我解决一下吧
------解决方案--------------------
> > cgiPrefox
应该是 cgiPrefix
> > LINK : warning LNK4098: defaultlib "LIBC " conflicts with use of other libs; use /NODEFAULTLIB:library
这条不碍事, 编译选项加上 /NODEFAULTLIB:libc 即可去掉这个警告.
Good Luck!