在DELPHI做的DLL中,其函数的返回值类型为OleVariant,假设为
function my_test(): OleVariant;
我在PB调用时一直出错,PB中我申明的是
FUNCTION string my_test() LIBRARY "MyDll.dll" 
请问我应该将string换成什么???另外,如果DELPHI中的函数定义为
function my_test1(): Pchar;
则PB调用没有问题。各位大虾帮帮忙。