2
0
mirror of synced 2025-02-23 23:08:14 +00:00
David Crawshaw d56aee7394 go.mobile/example: give library examples a lib prefix
LGTM=nigeltao
R=golang-codereviews, nigeltao
CC=golang-codereviews
https://golang.org/cl/130910043
2014-09-03 09:28:47 -04:00

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)
}