LGTM=nigeltao R=golang-codereviews, nigeltao CC=golang-codereviews https://golang.org/cl/130910043
19 lines
378 B
Go
19 lines
378 B
Go
// Package go_hi is an autogenerated binder stub for package hi.
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
package go_hi
|
|
|
|
import (
|
|
"code.google.com/p/go.mobile/bind/seq"
|
|
"code.google.com/p/go.mobile/example/libhello/hi"
|
|
)
|
|
|
|
func proxy_Hello(out, in *seq.Buffer) {
|
|
param_name := in.ReadUTF16()
|
|
hi.Hello(param_name)
|
|
}
|
|
|
|
func init() {
|
|
seq.Register("hi", 1, proxy_Hello)
|
|
}
|