//
//  LCCallDelegate.h
//  LCOnDemo
//
//  Created by 陈嘉乐 on 2021/5/12.
//

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

//开锁成功通知
extern NSString *const LCCallDelegateOpenDoorSuccess;

@protocol LCCallDelegate <NSObject>

//接听回调
-(void)onAnswerAction;

//拒接来电回调
-(void)onRejectCallAction;

//开锁回调
-(void)onUnlockAction;

//挂断(通话结束)
-(void)onHangUpAction:(int)callDuration;

//通话视频截图上传
-(void)onScreenshotSuccessfulAction:(UIImage *)image;

@end

@interface LCCallDelegate : NSObject

@end

NS_ASSUME_NONNULL_END