Add missing types.

This commit is contained in:
Nolan Darilek 2021-03-11 12:54:50 -06:00
parent d9ca83ca15
commit 00a16c5dd5
1 changed files with 4 additions and 3 deletions

View File

@ -1,8 +1,9 @@
fn main() {
windows::build!(
windows::foundation::TypedEventHandler,
windows::foundation::{EventRegistrationToken, IAsyncOperation, TypedEventHandler},
windows::media::core::MediaSource,
windows::media::playback::{MediaPlaybackState, MediaPlayer, MediaPlayerAudioCategory},
windows::media::speech_synthesis::SpeechSynthesizer,
windows::media::playback::{MediaPlaybackSession, MediaPlaybackState, MediaPlayer, MediaPlayerAudioCategory},
windows::media::speech_synthesis::{SpeechSynthesisStream, SpeechSynthesizer, SpeechSynthesizerOptions},
windows::storage::streams::IRandomAccessStream,
);
}