IAudioSessionManager2::UnregisterSessionNotification 方法 (audiopolicy.h)

UnregisterSessionNotification 方法删除注册,以在创建会话时接收通知。

语法

HRESULT UnregisterSessionNotification(
  IAudioSessionNotification *SessionNotification
);

参数

SessionNotification

指向 应用程序实现 IAudioSessionNotification 接口的指针。 将之前调用 IAudioSessionManager2::RegisterSessionNotification 中指定的接口指针传递给会话管理器,以注册通知。

如果 UnregisterSessionNotification 方法成功,它将在应用程序的 IAudioSessionNotification 接口上调用 Release 方法。

返回值

如果该方法成功,则它会返回 S_OK。 如果失败,可能的返回代码包括但不限于下表中显示的值。

返回值 说明
E_POINTER
SessionNotificationNULL

注解

应用程序在不再需要接收通知时调用此方法。 UnregisterSessionNotification 方法通过调用 IAudioSessionControl::RegisterAudioSessionNotification 方法删除应用程序以前向会话管理器注册的 IAudioSessionNotification 接口的注册。

要求

要求
最低受支持的客户端 Windows 7 [仅限桌面应用]
最低受支持的服务器 Windows Server 2008 R2 [仅限桌面应用]
目标平台 Windows
标头 audiopolicy.h

另请参阅

IAudioSessionManager2