24 lines
651 B
Objective-C
24 lines
651 B
Objective-C
//
|
|
// QXAgoraEngineEx.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/7/2.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <AgoraRtcKit/AgoraRtcEngineKit.h>
|
|
#import <AgoraRtcKit/AgoraRtcEngineKitEx.h>
|
|
#import "QXUserModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXAgoraEngineEx : NSObject
|
|
+ (instancetype)sharedEngine;
|
|
-(void)joinExWithAgora_token:(NSString*)agora_token channel:(NSString*)channel pkUserId:(NSString*)pkUserId;
|
|
- (void)muteLocalEXAudioStream:(BOOL)mute fromUserInfo:(QXUserHomeModel *)fromUserInfo;;
|
|
|
|
- (void)muteRemoteEXAudioStream:(BOOL)mute;
|
|
-(void)quitEXChannelWithLastPkRoomId:(NSString*)last_pk_room_id;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|