L
Lotus123
Unregistered / Unconfirmed
GUEST, unregistred user!
在Delphi的动态库中定义一函数,其中有一参数为记录型数组
例如
Type
tardDemo = Record
p1 : Integer;
p2 : Single;
p3 : pChar;
end;
...
Function FTest(Out ardDeno : Array of TardDemo) : Integer;
SafeCall;
...
请问在PB中应如何调用?
例如
Type
tardDemo = Record
p1 : Integer;
p2 : Single;
p3 : pChar;
end;
...
Function FTest(Out ardDeno : Array of TardDemo) : Integer;
SafeCall;
...
请问在PB中应如何调用?