13 lines
407 B
C
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__
|