2022-09-29 20:37:48 +02:00
|
|
|
mod foreground;
|
2022-03-26 19:21:19 +01:00
|
|
|
#[cfg(any(target_os = "android", target_os = "linux"))]
|
2022-01-14 07:20:53 +01:00
|
|
|
mod linux;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
mod macos;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
mod windows;
|
|
|
|
|
2022-09-29 20:37:48 +02:00
|
|
|
pub use self::foreground::{ForegroundChild, ForegroundProcess};
|
2022-03-26 19:21:19 +01:00
|
|
|
#[cfg(any(target_os = "android", target_os = "linux"))]
|
2022-01-14 07:20:53 +01:00
|
|
|
pub use self::linux::*;
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
pub use self::macos::*;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
|
|
pub use self::windows::*;
|