gpt4 book ai didi

c++ - 显式调用 DLL

转载 作者:可可西里 更新时间:2023-11-01 10:56:48 27 4
gpt4 key购买 nike

谁能告诉我为什么我的 SimpleTest 应用程序不显示“测试”?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;
}

最佳答案

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

关于c++ - 显式调用 DLL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8761201/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com