Skip to main content

ohos_abilitykit_sys/
runtime.rs

1#[link(name = "ability_runtime")]
2extern "C" {}
3
4pub mod application_context;
5mod common;
6mod context;
7
8pub use common::*;
9pub use context::*;
10
11#[cfg(feature = "api-17")]
12#[cfg_attr(docsrs, doc(cfg(feature = "api-17")))]
13pub mod start_options;