-2

我想要这个,或者我应该说我想在 Form1(void) 中触发或调用函数,如Wfs_StartUp,等Wfs_OpenWfs_Execute但我收到了这些错误:

错误 LNK2028:未解析的令牌 (0A000371) "int _cdecl mytestapp::Wfs_Execute(unsigned short)" (?Wfs_Execute@mytestapp@@$$FYAHG@Z) 在函数“public: _clrcall mytestapp::Form1::Form1(void)”中引用" (??0Form1 @mytestapp@@$$FQ$AAM@XZ)

此错误报告了两次,但在第二个错误中

错误 LNK2019:未解析的外部符号“int _cdecl mytestapp::Wfs_Execute(unsigned short)”(?Wfs_Execute@mytestapp@@$$FYAHG@Z) 在函数“public:_clrcall mytestapp::Form1::Form1(void)”中引用( ??0Form1@mytestapp@@$$FQ$AAM@XZ)

第三个错误:

错误 LNK1120:2 个未解决的外部问题。

4

1 回答 1

0

错误指向函数 mytestapp::Wfs_Execute。我会检查:

  1. 此函数是否不是内联的,而是从另一个翻译单元调用的
  2. 此函数的签名是否在声明和定义之间匹配
  3. 实现此功能的源文件是否是构建的一部分
于 2016-01-08T15:11:18.660 回答