nuit_bridge_swiftui/
lib.rs

1use nuit_core::CRoot;
2
3#[cfg(target_vendor = "apple")]
4extern "C" {
5    /// Runs the given app root using SwiftUI.
6    #[link_name = "nuit_bridge_swiftui_run_app"]
7    pub fn run_app(root: *const CRoot);
8}