2024-06-24 13:26:49 +02:00
|
|
|
//! Apple/Darwin-specific implementations
|
|
|
|
|
|
|
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
mod appkit;
|
2024-08-15 23:19:57 +02:00
|
|
|
mod event_handler;
|
2025-03-01 20:18:28 +01:00
|
|
|
mod event_loop_proxy;
|
2024-08-11 23:14:18 +02:00
|
|
|
mod notification_center;
|
2024-06-24 13:26:49 +02:00
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
|
|
|
mod uikit;
|
|
|
|
|
|
2024-10-15 17:26:43 +03:00
|
|
|
#[allow(unused_imports)]
|
2024-06-24 13:26:49 +02:00
|
|
|
#[cfg(target_os = "macos")]
|
|
|
|
|
pub use self::appkit::*;
|
2024-10-15 17:26:43 +03:00
|
|
|
#[allow(unused_imports)]
|
2024-06-24 13:26:49 +02:00
|
|
|
#[cfg(not(target_os = "macos"))]
|
|
|
|
|
pub use self::uikit::*;
|