Delphi函数中用到 PChar在VB 中用什么类型?Delphi 中声明:function fGetStr(Str: PChar): PChar;
begin
        Result := Str;
end;VB怎么调用?