Tests now pass on OS X. Change-Id: Id2e6c5bd9ddd4070962ff9bc121d7902e8c9a647 Reviewed-on: https://go-review.googlesource.com/13694 Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
26 lines
476 B
Plaintext
26 lines
476 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>
|
|
|
|
|
|
|
|
@protocol GoInterfacesI
|
|
- (int32_t)Rand;
|
|
@end
|
|
|
|
@protocol GoInterfacesWithParam
|
|
- (void)HasParam:(BOOL)p0;
|
|
@end
|
|
|
|
FOUNDATION_EXPORT int32_t GoInterfacesAdd3(id<GoInterfacesI> r);
|
|
|
|
FOUNDATION_EXPORT id<GoInterfacesI> GoInterfacesSeven();
|
|
|
|
#endif
|