| | |
| | | [Export("collectButtonCallBack", ArgumentSemantic.Copy)] |
| | | CollectButtonCallBack CollectButtonCallBack { get; set; } |
| | | } |
| | | |
| | | |
| | | |
| | | // @interface ESVideo : NSObject |
| | | [BaseType(typeof(NSObject))] |
| | | interface ESVideo |
| | | { |
| | | //// @property (nonatomic, strong) int * _Nonnull es; |
| | | //[Export("es", ArgumentSemantic.Strong)] |
| | | //unsafe int* Es { get; set; } |
| | | |
| | | //// @property (copy, nonatomic) int snapImageCallback; |
| | | //[Export("snapImageCallback", ArgumentSemantic.Copy)] |
| | | //int SnapImageCallback { get; set; } |
| | | |
| | | // +(instancetype _Nonnull)shareInstance; |
| | | [Static] |
| | | [Export("shareInstance")] |
| | | ESVideo ShareInstance(); |
| | | |
| | | // +(void)haltSharedInstance; |
| | | [Static] |
| | | [Export("haltSharedInstance")] |
| | | void HaltSharedInstance(); |
| | | |
| | | // -(void)initSDK; |
| | | [Export("initSDK")] |
| | | void InitSDK(); |
| | | } |
| | | } |
| | | |