2018-12-14 19:35:49 +00:00
|
|
|
#[cfg(target_os = "linux")]
|
|
|
|
mod speech_dispatcher;
|
|
|
|
|
2021-01-21 16:49:11 +00:00
|
|
|
#[cfg(all(windows, feature = "tolk"))]
|
2019-03-25 19:15:08 +00:00
|
|
|
mod tolk;
|
|
|
|
|
2020-05-18 20:01:28 +00:00
|
|
|
#[cfg(windows)]
|
2020-12-30 20:23:31 +00:00
|
|
|
mod winrt;
|
2020-05-18 20:01:28 +00:00
|
|
|
|
2018-12-30 17:13:48 +00:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
|
|
|
mod web;
|
|
|
|
|
2020-08-11 17:11:19 +00:00
|
|
|
#[cfg(target_os = "macos")]
|
2020-08-13 11:46:16 +00:00
|
|
|
mod appkit;
|
2020-08-11 17:11:19 +00:00
|
|
|
|
2020-09-02 21:03:04 +00:00
|
|
|
#[cfg(any(target_os = "macos", target_os = "ios"))]
|
2020-08-13 16:08:00 +00:00
|
|
|
mod av_foundation;
|
|
|
|
|
2020-12-27 15:41:11 +00:00
|
|
|
#[cfg(target_os = "android")]
|
|
|
|
mod android;
|
|
|
|
|
2018-12-14 19:35:49 +00:00
|
|
|
#[cfg(target_os = "linux")]
|
2020-09-23 15:12:51 +00:00
|
|
|
pub(crate) use self::speech_dispatcher::*;
|
2018-12-30 17:13:48 +00:00
|
|
|
|
2021-01-21 16:49:11 +00:00
|
|
|
#[cfg(all(windows, feature = "tolk"))]
|
2020-09-23 17:23:46 +00:00
|
|
|
pub(crate) use self::tolk::*;
|
2019-03-25 19:15:08 +00:00
|
|
|
|
2020-12-30 20:23:31 +00:00
|
|
|
#[cfg(windows)]
|
|
|
|
pub(crate) use self::winrt::*;
|
|
|
|
|
2018-12-30 17:13:48 +00:00
|
|
|
#[cfg(target_arch = "wasm32")]
|
2020-12-30 20:23:31 +00:00
|
|
|
pub(crate) use self::web::*;
|
2020-08-11 17:11:19 +00:00
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
2020-09-23 16:28:56 +00:00
|
|
|
pub(crate) use self::appkit::*;
|
2020-08-13 16:08:00 +00:00
|
|
|
|
2020-09-02 21:03:04 +00:00
|
|
|
#[cfg(any(target_os = "macos", target_os = "ios"))]
|
2020-09-23 16:28:56 +00:00
|
|
|
pub(crate) use self::av_foundation::*;
|
2020-12-27 15:41:11 +00:00
|
|
|
|
|
|
|
#[cfg(target_os = "android")]
|
|
|
|
pub(crate) use self::android::*;
|