我正在使用Windows 10(64位)和Excel 2016(32位),并希望在VBA中实现Yocto-4-20mA-Tx模块(https://www.yoctopuce.com/EN/products/usb-actuators/yocto-4-20ma-tx)的控制。
根据文档,DLL是用C语言编写的,下面是三个基本功能。
int yapiInitAPI(int connection_type, char *errmsg);
int yapiUpdateDeviceList(int forceupdate, char *errmsg);
int yapiHTTPRequest(char *device, char *request, char *buffer, int buffsize, int *fullsize, char *errmsg);
我已阅读(但可能未完全理解)以下内容:
我尝试在VBA模块中实现第一个函数(yapiInitAPI)。 DLL位于应用程序文件夹中
Option Explicit
Private Declare Function yapiInitAPI Lib "yapi" (ByVal connection_type As Long, ByVal errmsg As String) As Long
Sub myInit()
Dim nReturn As Long
Dim sError As String
nReturn = yapiInitAPI(1, sError)
MsgBox sError
MsgBox nReturn
End Sub
运行此结果
“运行时错误'49':错误的DLL调用约定”
在yapiInitAPI(1,sError)行上。
以下是一些问题:
答案 0 :(得分:1)
该文档还提到“ yapi.dll中的每个入口点都是重复的。您将找到一个常规C-decl版本和一个Visual Basic 6兼容版本,前缀为vb6 _。”: - )
您必须为调用者应用程序和DLL使用相同的32/64位体系结构。