Example #1
0
func proxy_Hello(out, in *seq.Buffer) {
	param_name := in.ReadUTF16()
	hi.Hello(param_name)
}
Example #2
0
File: go_hi.go Project: xfong/gocl
func proxy_Hello(out, in *seq.Buffer) {
	param_name := in.ReadUTF16()
	res := hi.Hello(param_name)
	out.WriteUTF16(res)
}