Fixes golang/go#29559 Change-Id: Iffaac239e5c9a9e53f4e292b4d9bf669d5084e1f GitHub-Last-Rev: c5d4a4823d2bf60fa7bff09ab7bbdc9235c49d67 GitHub-Pull-Request: golang/mobile#25 Reviewed-on: https://go-review.googlesource.com/c/159417 Reviewed-by: Elias Naur <mail@eliasnaur.com>
29 lines
565 B
Plaintext
29 lines
565 B
Plaintext
// Package main is an autogenerated binder stub for package issue29559.
|
|
// gobind -lang=go issue29559
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
package main
|
|
|
|
/*
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include "seq.h"
|
|
#include "issue29559.h"
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
_seq "golang.org/x/mobile/bind/seq"
|
|
"issue29559"
|
|
)
|
|
|
|
// suppress the error if seq ends up unused
|
|
var _ = _seq.FromRefNum
|
|
|
|
//export proxyissue29559__TakesAString
|
|
func proxyissue29559__TakesAString(param_s C.nstring) {
|
|
_param_s := decodeString(param_s)
|
|
issue29559.TakesAString(_param_s)
|
|
}
|