dll 调用 问题,请帮忙
有
dll.zip
(166.65 KB)
个 dll 文件,是接口文件 vfp 9.0 一直调用不了,请帮忙!附上文件,看看怎样使用。用 craeteobject 也试过,但是需要注册,注册不了。用 declare integer hisinterface in hiscomminterface.dll string input,string output hisinterface(input,output) 好像不行。
有 pb 的调用实例如下:
在PowerBuilder中,声明为FUNCTION int hisinterface(string input, string output) liabrary hiscomminterface.dll
调用时,首先给对应的各变量分配空间
例如,string input = Space(10000)
String output = Space(1000)
li_return = hisinterface (input, InHosNo)
vb 的调用实例如下:
Private Declare Function comminterface "hiscomminterface.dll" (ByVal input As string, ByVal output As string) As Integer
//定义变量
Dim input,output As string
//变量赋值(略)
//调用
GetPersonInfoLib(input, output)
。
[此贴子已经被作者于2019-5-27 01:45编辑过]