func proxy_Add(out, in *seq.Buffer) { param_x := in.ReadInt() param_y := in.ReadInt() res := testpkg.Add(param_x, param_y) out.WriteInt(res) }
func proxy_CollectS(out, in *seq.Buffer) { param_want := in.ReadInt() param_timeoutSec := in.ReadInt() res := testpkg.CollectS(param_want, param_timeoutSec) out.WriteInt(res) }
func var_setIntVar(out, in *seq.Buffer) { v := in.ReadInt() testpkg.IntVar = v }