调用库文件出错 :找不到外部程序
在头文件中已经声明了该函数Declare Function TestCaseExecute Basiclib "TestCaseExecute" (TestCasePath As String,SheetName As string,TestReportPath As string)
在脚本中调用该函数,
'$Include "TestCaseExecute.sbh"
sub Main
....
call TestCaseExecute("TestCasePath","SheetName ","TestReportPath ")
....
end sub
运行脚本时 提示错误:找不到外部程序 请指教 sdlkfj9 sdlkfj9 sdlkfj9 sdlkfj9 sdlkfj9 sdlkfj9 sdlkfj9 sdlkfj9 sdlkfj9 sdlkfj9
回复 1# 的帖子
Declare Function TestCaseExecute Basiclib "TestCaseExecute" (TestCasePath As String,SheetName As string,TestReportPath As string)这个函数的声明有点问题,需要一个函数返回的类型. 比如:
Declare Function TestCaseExecute Basiclib "TestCaseExecute" (TestCasePath As String,SheetName As string,TestReportPath As string) as Long
再到这个函数的代码中仔细查看函数的名称和库文件是否写错. 用C++的Tools Depends看下你DLL中可以调用的函数就知道了,在函数前会有几个乱码区别参数不同但是函数名字相同的问题,,还是c++重载的问题,只需要在函数定义前后中添加
#ifdef __cplusplus
extern \"C\" {
#endif
函数定义
#ifdef __cplusplus
}
#endif
页:
[1]