1
0
mirror of https://github.com/ndarilek/tts-rs.git synced 2024-07-27 04:09:38 +00:00

Add missing types.

This commit is contained in:
Nolan Darilek 2021-03-11 12:54:50 -06:00
parent d9ca83ca15
commit 00a16c5dd5

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,
);
}