cdts/xdts-ios 3/TUICalling/Source/UI/Common/TUICallingAudioPlayer.h
2023-07-27 09:20:00 +08:00

21 lines
438 B
Objective-C

//
// TUICallingAudioPlayer.h
// TUICalling
//
// Created by gg on 2021/9/2.
//
#import <Foundation/Foundation.h>
typedef enum : NSUInteger {
CallingAudioTypeHangup, // 挂断
CallingAudioTypeCalled, // 被动呼叫
CallingAudioTypeDial, // 主动呼叫
} CallingAudioType;
extern BOOL playAudioWithFilePath(NSString *filePath);
extern BOOL playAudio(CallingAudioType type);
extern void stopAudio(void);