It was generated once per bound package before, but since it is constant it belongs in seq.h. Change-Id: I7d920e8e87ce11cc9ae5e5e410dd935bc6e53480 Reviewed-on: https://go-review.googlesource.com/20657 Reviewed-by: David Crawshaw <crawshaw@golang.org>
23 lines
452 B
Plaintext
23 lines
452 B
Plaintext
// Objective-C API for talking to try Go package.
|
|
// gobind -lang=objc try
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
|
|
#include <Foundation/Foundation.h>
|
|
#include "seq.h"
|
|
#include "_cgo_export.h"
|
|
#include "GoTry.h"
|
|
|
|
static NSString* errDomain = @"go.try";
|
|
|
|
|
|
NSString* GoTryThis() {
|
|
nstring r0 = proxytry__This();
|
|
NSString *_ret0_ = go_seq_to_objc_string(r0);
|
|
return _ret0_;
|
|
}
|
|
|
|
__attribute__((constructor)) static void init() {
|
|
init_seq();
|
|
}
|