0

2 つのプロジェクトを作成しました。1 つはプロバイダーで、内部にクラス DH を追加しました。

using namespace std;
#ifdef PROVIDER_EXPORTS
#define DH_API __declspec(dllexport)
#else
#define DH_API __declspec(dllimport)
#endif
#include <iostream>

namespace Provider
{
    class DH
    {
    public:
        static DH_API std::string GetKey();
    };
}

とインプ:

#include "DH.h"

using namespace std;
namespace Provider
{


    std::string DH::GetKey()
    {

        return "KEY";
    }

}

dllをダンプすると、次のようになります。

?GetKey@DH@Provider@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ = @ILT+10(?GetKey@DH@Provider@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)

新しいプロジェクト - dh.h をインクルードするテスターで、プロバイダー プロジェクトのデバッグ フォルダーをリンク ディレクトリに追加しました。

そして、私はただ呼び出しますDH::GetKeyが、コンパイルすると次のようになります:

LNK2019: unresolved external symbol "__declspec(dllimport) public: static class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Provider::DH::GetKey(void)" (__imp_?GetKey@DH@Provider@@SA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) referenced in function "long __stdcall WndProc(struct HWND__ *,unsigned int,unsigned int,long)" (?WndProc@@YGJPAUHWND__@@IIJ@Z)

なにが問題ですか?

4

2 に答える 2

1

プロジェクトの依存関係を設定するか、dll の .lib ファイルをtesterプロジェクトの lib 入力に追加して、インポートされた関数を検索する場所を認識させる必要があります。

于 2013-06-19T17:15:28.470 に答える