tts-rs/winrt_bindings/build.rs

10 lines
470 B
Rust
Raw Normal View History

2021-01-22 17:28:42 +00:00
fn main() {
windows::build!(
2021-03-11 18:54:50 +00:00
windows::foundation::{EventRegistrationToken, IAsyncOperation, TypedEventHandler},
windows::media::core::MediaSource,
2021-03-11 18:54:50 +00:00
windows::media::playback::{MediaPlaybackSession, MediaPlaybackState, MediaPlayer, MediaPlayerAudioCategory},
windows::media::speech_synthesis::{SpeechSynthesisStream, SpeechSynthesizer, SpeechSynthesizerOptions},
windows::storage::streams::IRandomAccessStream,
2021-01-22 17:28:42 +00:00
);
}