更新时间:2024-06-28 GMT+08:00
禁用提示音
DisableVoicePrompts
接口描述
禁用提示音。
注意事项
- 该接口非必需调用,如不调用,则默认播放会中提示音。
- 该接口为异步接口,返回值只代表接口是否调用成功,实际业务处理结果在对应的回调函数中返回。
方法定义
1
|
HWM_SDK_AGENT_API hwmsdk::HwmErrCode DisableVoicePrompts(const HwmVoicePromptsInfo* voicePromptsInfo); |
回调函数
1
|
virtual void OnDisableVoicePromptsResult(hwmsdk::HwmErrCode ret, const char* reason) {}; |
参数描述
参数 |
是否必须 |
类型 |
描述 |
---|---|---|---|
voicePromptsInfo |
是 |
HwmVoicePromptsInfo |
语音提示信息。 |
参数 |
是否必须 |
类型 |
描述 |
---|---|---|---|
isDisableMutePrompt |
是 |
bool |
是否禁用静音提示。 |
返回值
类型 |
描述 |
---|---|
HwmErrCode |
成功返回0,其他值表示失败。失败返回值见错误码参考。 |
示例代码
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/** * 禁用提示音 */ void demoDisableVoicePromptsDlg::DisableVoicePrompts() { hwmsdkagent::HwmVoicePromptsInfo info{}; info.isDisableMutePrompt = true; int ret = hwmsdkagent::DisableVoicePrompts(&info);; if (hwmsdk::HWM_COMMON_SUCCESS != ret) { AfxMessageBox(_T("disable voice prompts error")); return; } CDialogEx::OnOK(); } |
父主题: 基础配置