ohos_abilitykit_sys/lib.rs
1//! Bindings to the OpenHarmony AbilityKit.
2//!
3//! Requires at least API-12.
4//! ## Feature flags
5#![cfg_attr(
6 feature = "document-features",
7 cfg_attr(doc, doc = ::document_features::document_features!())
8)]
9#![cfg_attr(docsrs, feature(doc_cfg))]
10#![cfg(feature = "api-12")]
11
12#[cfg(feature = "api-15")]
13#[cfg_attr(docsrs, doc(cfg(feature = "api-15")))]
14pub mod base;
15
16#[cfg(feature = "api-13")]
17#[cfg_attr(docsrs, doc(cfg(feature = "api-13")))]
18pub mod runtime;
19
20#[cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
21pub mod childprocess;