码迷,mamicode.com
首页 > 其他好文 > 详细

利用powerbasic为PowerBuilder写动态库

时间:2015-03-10 16:48:25      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

按pb中正常DLL编写方式即可,主要是要注意两个pb直接的数据类型转换的问题。

powerbasic 中直接定义string类型参数,对应pb的blob类型

powerbasic中定义的定长字符串 string*n 或者anscii*n,对应pb的string类型,此时参数传递类型为BYREF 引用传递。

定义

FUNCTION myfun ALIAS "myfun"(  BYVAL Matchstring AS STRING  ) EXPORT AS STRING  

声明

public function string replacenull (blob mainstring)  library "mydll.dll" alias for "myfun"

 

定义

FUNCTION MyFunction1     ALIAS "MyFunction1" (BYREF Param1 AS  STRING *60 ) EXPORT AS STRING
   MSGBOX "MYDLL.DLL has recevied: " + (Param1)
    FUNCTION = "1"‘Param1  ‘ return 1 to calling program
END FUNCTION  

 

 声明

Function string MyFunction1( ref string  abc )  library "mydll.dll"

 

 

利用powerbasic为PowerBuilder写动态库

标签:

原文地址:http://www.cnblogs.com/mybuilder/p/4326091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!