Allow dropping old muters.

This commit is contained in:
Your Name
2023-02-21 23:12:46 -05:00
parent 671814fc81
commit 45f8d9bd26
6 changed files with 115 additions and 37 deletions

View File

@@ -23,3 +23,9 @@ impl IAudioSessionNotification_Impl for SessionNotification {
Ok(())
}
}
impl Drop for SessionNotification {
fn drop(&mut self) {
println!("SN drop");
}
}