28 строки
528 B
Plaintext
28 строки
528 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;
|
|
|
|
@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
|