链接错误
我在一个已经可以运行的程序中添加了一个新类,编译能够通过,但是链接时却出现了如下错误:LINK : fatal error LNK1561: entry point must be defined。MSDN中的解释是:The symbol specified by the /ENTRY option is not defined.而我查了ENTRY的解释却是:The Entry-Point Symbol (/ENTRY:function) option sets the starting address for an .EXE file or DLL. (To find this option in the development environment, click Settings on the Project menu. Then click the Link tab, and click Output in the Category box.) 我在工程设置里面也没有设置,也不知道定义一个什么样的函数。说明一下:我用工具的是VC,但没有用到VC里面的库,仅只用了C++语法和wxWidgets、pwlib、openh323和opal库,其中wxWidgets相当于MFC库,用来作界面的,而后面三个库是用来做网络电话的。请各位大虾们帮帮忙,谢谢!