1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#[macro_use]
#[cfg(any(target_os = "android", target_os = "linux", target_os="macos", target_os="ios", target_os="windows"))]
pub mod cx_native;

#[macro_use]
pub mod cx_shared;

pub mod cx_stdin;

#[cfg(any(target_os = "macos", target_os="ios"))]
pub mod apple;

#[cfg(any(target_os = "macos", target_os="ios"))]
pub use crate::os::apple::*;

#[cfg(any(target_os = "macos", target_os="ios"))]
pub use crate::os::apple::apple_media::*;

#[cfg(target_os = "windows")]
pub mod windows;

#[cfg(target_os = "windows")]
pub use crate::os::windows::*;

//#[cfg(target_os = "windows")]
//pub use crate::os::windows::windows_media::*;

#[cfg(any(target_os = "android", target_os = "linux"))]
pub mod linux;

#[cfg(any(target_os = "android", target_os = "linux"))]
pub use crate::os::linux::*;

#[cfg(target_os = "android")]
pub use crate::os::linux::android::android_media::*;

#[cfg(target_os = "linux")]
pub use crate::os::linux::linux_media::*;

#[cfg(target_os = "linux")]
pub use crate::os::linux::*;

#[cfg(target_os = "linux")]
pub use crate::os::linux::linux_media::*;


#[cfg(target_arch = "wasm32")]
pub mod web;

#[cfg(target_arch = "wasm32")]
pub use crate::os::web::*;