Skip to main content

Mountain/IPC/WindServiceHandlers/NativeHost/
mod.rs

1#![allow(non_snake_case, unused_variables, dead_code, unused_imports)]
2
3//! NativeHost atoms - native OS-layer handlers.
4//!
5//! One `pub async fn` per file. This `mod.rs` only declares sub-modules; no
6//! `pub use`. Dispatch-site callers bring each atom in via local `use`.
7
8pub mod FindFreePort;
9
10pub mod GetColorScheme;
11
12pub mod IsFullscreen;
13
14pub mod IsMaximized;
15
16pub mod OpenExternal;
17
18pub mod OSProperties;
19
20pub mod OSStatistics;
21
22pub mod PickFolder;
23
24pub mod ShowItemInFolder;
25
26pub mod ShowOpenDialog;