ohos_window_manager_sys/
lib.rs1#![cfg_attr(
7 feature = "document-features",
8 cfg_attr(doc, doc = ::document_features::document_features!())
9)]
10#![cfg_attr(docsrs, feature(doc_cfg))]
11#![cfg(feature = "api-12")]
12
13#[cfg(feature = "api-14")]
14#[cfg_attr(docsrs, doc(cfg(feature = "api-14")))]
15pub mod display_capture;
16
17pub mod display_info;
18
19pub mod display_manager;
20
21#[cfg(feature = "api-15")]
22#[cfg_attr(docsrs, doc(cfg(feature = "api-15")))]
23pub mod window;
24
25pub mod window_comm;
26
27pub mod window_event_filter;
28
29#[cfg(feature = "api-20")]
30#[cfg_attr(docsrs, doc(cfg(feature = "api-20")))]
31pub mod window_pip;