显式调用DLL

时间:2012-01-06 16:39:00

标签: c++ windows visual-studio-2008 dll

有谁能告诉我为什么我的SimpleTest应用程序不显示“Test”? DLL加载成功,我只是没有得到任何控制台输出。

SimpleDLL.cpp

#include "stdafx.h"
#include "SimpleDLL.h"

#include "stdafx.h"
#include <iostream>

int Test()
{
    std::cout << "Test" << std::endl;
    return 0;
}

SimpleDLL.h

#ifndef _DLL_TUTORIAL_H_
#define _DLL_TUTORIAL_H_
#include <iostream>

#if defined DLL_EXPORT
#define DECLDIR __declspec(dllexport)
#else
#define DECLDIR __declspec(dllimport)
#endif

DECLDIR int Test();

#endif

SimpleTest.cpp

#include "stdafx.h"
#include <iostream>
#include <windows.h>

typedef int (*TestFunc)();

int main()
{
    TestFunc _TestFunc;
    HINSTANCE hInstLibrary = LoadLibrary( _T("SimpleDLL.dll"));

    if (hInstLibrary)
    {
        _TestFunc = (TestFunc)GetProcAddress(hInstLibrary, "Test");
    }
    else
    {
        std::cout << "DLL Failed To Load!" << std::endl;
    }

    if (_TestFunc)
    {
        _TestFunc();
    }

    FreeLibrary(hInstLibrary);

    return 0;
}

2 个答案:

答案 0 :(得分:6)

您需要在extern "C"之前声明__declspec(...)。这是因为C ++在导出C ++函数时添加了名称修饰,并且您需要将其声明为C函数以将函数Test导出为“Test”

答案 1 :(得分:2)

正如JoesphH所说,您需要extern "C"来防止名称损坏。除此之外,没有指定以下任何一个编译器开关:

  • Gz __stdcall调用约定:“测试”将导出为Test@0
  • Gr __fastcall caling惯例:“Test”将导出为@Test@0

注意:我认为最后一个符号依赖于编译器版本,但仍然不仅仅是“测试”。

另外,根据我的评论检查来自GetProcAddress()的返回值,如果返回NULL则使用GetLastError()的值来获取失败的原因。