我的代码:
Private Declare Function Test Lib "test.dll" (ByRef uchar As Byte) As Long
Dim byteArr(0 To 100) As Byte
Test(byteArr)
提示aray must be byref
我是用VC写的动态库,请问VB的正确调用方法,最好源码,多谢!
我的代码: Private Declare Function Test Lib "test.dll" (ByRef uchar As Byte) As Long Dim byteArr(0 To 100) As Byte Test(byteArr) 提示aray must be byref 我是用VC写的动态库,请问VB的正确调用方法,最好源码,多谢!