This allows gomobile bind to stop copying seq.h to the destination. Change-Id: I4a23613fe0407500ad483ae9d8f6bb823d82f082 Reviewed-on: https://go-review.googlesource.com/12300 Reviewed-by: David Crawshaw <crawshaw@golang.org>
22 lines
412 B
Plaintext
22 lines
412 B
Plaintext
// Objective-C API for talking to interfaces Go package.
|
|
// gobind -lang=objc interfaces
|
|
//
|
|
// File is generated by gobind. Do not edit.
|
|
|
|
#ifndef __GoInterfaces_H__
|
|
#define __GoInterfaces_H__
|
|
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@class GoInterfacesI;
|
|
|
|
@class GoInterfacesWithParam;
|
|
|
|
|
|
|
|
FOUNDATION_EXPORT int32_t GoInterfacesAdd3(GoInterfacesI* r);
|
|
|
|
FOUNDATION_EXPORT GoInterfacesI* GoInterfacesSeven();
|
|
|
|
#endif
|