123456789101112131415161718192021222324252627 |
- //
- // WFCCallKitManager.h
- // WildFireChat
- //
- // Created by Rain on 2022/4/25.
- // Copyright © 2022 WildFireChat. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #if WFCU_SUPPORT_VOIP
- #import <WFChatClient/WFCChatClient.h>
- #import <WFAVEngineKit/WFAVEngineKit.h>
- #import <WebRTC/WebRTC.h>
- #import <CallKit/CallKit.h>
- #import <PushKit/PushKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface WFCCallKitManager : NSObject <CXProviderDelegate>
- - (void)didReceiveCall:(WFAVCallSession *)session;
- - (void)didCallEnded:(WFAVCallEndReason)reason duration:(int)callDuration;
- - (void)didReceiveIncomingPushWithPayload:(PKPushPayload *)payload
- forType:(NSString *)type;
- @end
- NS_ASSUME_NONNULL_END
- #endif
|