gpt4 book ai didi

c++ - 从 C++ 代码通过 excel 访问 DLL

转载 作者:行者123 更新时间:2023-11-28 05:50:20 29 4
gpt4 key购买 nike

我正在尝试使用 visual studio 2015 从 C++ 代码创建 DLL。

我有一个 DLL_Tutorial.h 文件:

#ifndef _DLL_TUTORIAL_H_
#define _DLL_TUTORIAL_H_
#include <iostream>


extern "C"
{
DECLDIR int Add( int a, int b );
}

#endif
\\

\然后我创建了一个DLL_Tutorial.cpp

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

#define DLL_EXPORT

extern "C"
{
__declspec(dllexport) int Add(int a, int b)

{
return(a + b);
}

}

我得到了一个Dll文件

我想在 VBA 中调用我的函数并将其应用于 Excel 工作表

所以在 VBA 中我做了:

Public Declare Function Add _
Lib "C:\Users\hasna\Desktop\Projet VBA-C++\projet5\Debug\projet5.dll" (byval a As integer,byval b As integer) As integer

然后在 Excel 工作表中,我输入 2 个值(例如 6 和 4)我调用添加函数但它给了我:#VALEUR!

问题出在哪里?你能帮我解决一下吗

谢谢

最佳答案

在您的 DLL 头文件中,您似乎没有为导出的 API 添加前缀 __declspec(dllexport)。这通常被定义为 API 可以在构建 DLL 时使用 __declspec(dllexport),在外部项目中使用 header 时使用 __declspec(dllimport)。最好的办法是只使用 VS 2015 项目模板创建 DLL,它包含正确的 header ,并为您导出定义,因此您只需要专注于编写 API。这是 VS 2015 项目的一个工作示例:

例子 *.h:

#pragma once

// The following ifdef block is the standard way of creating macros which make exporting
// from a DLL simpler. All files within this DLL are compiled with the DLLAPI_EXPORTS
// symbol defined on the command line. This symbol should not be defined on any project
// that uses this DLL. This way any other project whose source files include this file see
// DLLAPI_API functions as being imported from a DLL, whereas this DLL sees symbols
// defined with this macro as being exported.
#ifdef DLLAPI_EXPORTS
#define DLLAPI_API __declspec(dllexport)
#else
#define DLLAPI_API __declspec(dllimport)
#endif

// This is an example of an exported function.
DLLAPI_API int fnDLLAPI(void);

示例 *.cpp:

// DLLAPI.cpp : Defines the exported functions for the DLL application.
//

#include "DLLAPI.h"

// This is an example of an exported function.
DLLAPI_API int fnDLLAPI(void)
{
return 42;
}

Windows Via C/C++ 书也是有关编写 DLL 的非常好的资源。现在关于 VB 导入,我不确定,因为我不熟悉通过 VB 导入 API。

关于c++ - 从 C++ 代码通过 excel 访问 DLL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35386112/

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