2
0
mirror of synced 2025-02-23 23:08:14 +00:00
mobile/bind/objc/seq.h
Hyang-Ah (Hana) Kim 812950cfd1 bind/objc: GoSeq for obj-c and go communication.
duplicate code from bind/java/seq_android.c to use for obj-c/go binding.

Change-Id: Iefd5d4171cca3a30c5d56f9b37647463e6fd0c5a
Reviewed-on: https://go-review.googlesource.com/9409
Reviewed-by: David Crawshaw <crawshaw@golang.org>
2015-05-01 19:28:10 +00:00

13 lines
407 B
C

// Copyright 2015 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#ifndef __GO_SEQ_HDR__
#define __GO_SEQ_HDR__
// GoSeq is a sequnce of machine-dependent encoded values.
// Used by automatically generated language bindings to talk to Go.
typedef struct GoSeq { void *mem_ptr; } GoSeq;
#endif // __GO_SEQ_HDR__