1

在过去的两天里,我一直在寻找类似问题的答案并将其实施到我的代码中,但收效甚微。我有一个外部 .dll(Windows)的 API,并且我的 .cpp 文件中包含了头文件以引用 API。

但是我有这个问题,无论我做什么,我总是得到一个未解析的外部符号,它在我的 .h 文件中引用了这一行。是的,我使用谷歌并修改了我在代码中找到的答案,但没有成功。

Foo.h

Class Foo {
    public:
        static Foo* Interface_Get(char* dllfilename);

Foo.cpp

// I declare this just underneath the #include "Foo.h" header
Foo *foo = 0;

在我的 main 函数中,我将它声明为 this(以及其他一些很好的函数)。

//This has already been created and both Header and .dll are in the same directory.
Foo::Interface_Get("bar.dll"); 

我得到这个错误

error LNK2019: unresolved external symbol 
    "public: static class Foo * __cdecl Foo::Interface_Get(char *)"

我已经尝试了我所知道的一切(这是我的第一次 .dll 创建经验)我有一种感觉我错过了一些非常明显的东西,但对于我的生活我看不到它。

整个 Foo.cpp

#include "Foo.h"
Foo* Foo::Interface_Get(char* dllfilename); //May not be redeclared outside class error

Foo* foo = 0;

bool Frame()
{
if (foo->Key_Down(DIK_ESCAPE))
    return false;   
return true;
}


INT WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, INT)
{
foo->Interface_Get("bar.dll");

foo->System_SetState(grSTATE_FRAME, Frame);

foo->System_SetState(grSTATE_WINDOWED, true);

foo->System_SetState(grSTATE_KEYBOARD, true);

foo->System_Initiate();

foo->System_Start();

foo->System_Shutdown();

foo->Inferface_Release();

return 0;
}
4

2 回答 2

2

这个问题解释了常见问题,在您的情况下,它(可能)是以下各项的组合:

  • (可能)忘记实现功能
  • 遗忘__declspec(dllexport)
  • 忘记链接到图书馆
于 2013-01-03T09:42:45.543 回答
1

Interface_Get(char* dllfilename);如果您还没有这样做,您需要提供函数定义。

这只会再次重新声明函数,您需要提供如下格式的函数{}

Foo* Foo::Interface_Get(char* dllfilename); //May not be redeclared outside class error

Foo.cpp

Foo* Foo::Interface_Get(char* dllfilename)
{
  //....
  return new Foo();
}
于 2013-01-03T09:40:41.143 回答