D
doby_li
Unregistered / Unconfirmed
GUEST, unregistred user!
现在要写个函数,有多个输入参数和输出参数,
现不知道delphi中如何编写这种函数,主要是不知道语法,格式.
我现在是这样写的:
function Read_Card(port,passwordchar;out factory,cardno,factor,writeno
char)char;stdcall;
begin
factory:='mytest1';
cardno:='mytest2';
writeno:='mytest3';
result:='ok';
end;
不知道上述写法对不对,另外应当如何调用这个函数,以取得这个函数的某个返回参数的值,如想取得cardno的值为:mytest2?
各位能不能贴个这种有多个输入参数和输出参数的函数给我参考一下呀.
非常感谢.
现不知道delphi中如何编写这种函数,主要是不知道语法,格式.
我现在是这样写的:
function Read_Card(port,passwordchar;out factory,cardno,factor,writeno
char)char;stdcall;
begin
factory:='mytest1';
cardno:='mytest2';
writeno:='mytest3';
result:='ok';
end;
不知道上述写法对不对,另外应当如何调用这个函数,以取得这个函数的某个返回参数的值,如想取得cardno的值为:mytest2?
各位能不能贴个这种有多个输入参数和输出参数的函数给我参考一下呀.
非常感谢.