File was renamed from iOS/Xamarin/ESVideoOnXamarin/ESVideoOnXamarin/ESCallDelegate.h |
| | |
| | | // |
| | | // ESCallDelegate.h |
| | | // ESVideoPhoneSDKDemo |
| | | // LCCallDelegate.h |
| | | // LCOnDemo |
| | | // |
| | | // Created by 陈嘉乐 on 2021/3/25. |
| | | // Copyright © 2021 eTouchSky. All rights reserved. |
| | | // Created by 陈嘉乐 on 2021/5/12. |
| | | // |
| | | |
| | | #import <Foundation/Foundation.h> |
| | |
| | | |
| | | NS_ASSUME_NONNULL_BEGIN |
| | | |
| | | @protocol ESCallDelegate <NSObject> |
| | | //开锁成功通知 |
| | | extern NSString *const LCCallDelegateOpenDoorSuccess; |
| | | |
| | | @protocol LCCallDelegate <NSObject> |
| | | |
| | | //接听回调 |
| | | -(void)onAnswerAction; |
| | |
| | | //拒接来电回调 |
| | | -(void)onRejectCallAction; |
| | | |
| | | //开始成功回调 |
| | | //开锁回调 |
| | | -(void)onUnlockAction; |
| | | |
| | | //挂断(通话结束) |
| | |
| | | |
| | | @end |
| | | |
| | | @interface ESCallDelegate : NSObject |
| | | @interface LCCallDelegate : NSObject |
| | | |
| | | @end |
| | | |