C
chenglc
Unregistered / Unconfirmed
GUEST, unregistred user!
假如定义一结构体;
type
Tstate=record
i:Integer;
str:string;
end;
在函数中我要传递一结构体指针变量如下
function (ts:^Tstate):integer; (ts:^Tstate)这样声明是错误的,请问如何声明?
type
Tstate=record
i:Integer;
str:string;
end;
在函数中我要传递一结构体指针变量如下
function (ts:^Tstate):integer; (ts:^Tstate)这样声明是错误的,请问如何声明?