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