【发布时间】:2012-06-10 08:27:47
【问题描述】:
我需要将字节数组从 NS Basic 传递到静态 C++ dll。
在 NS Basic 中,我将这样的函数定义为静态 dll。
Declare "Function myFunc Lib ""dllLib.dll""(ByVal data As Byte()) As Long"
Buffer = Array(0,1,2,3)
'call the function
myFunc(Buffer)
为此,我想知道静态C++函数的签名应该是什么?
【问题讨论】:
标签: c++ static-libraries nsbasic