ohos_input_sys/
lib.rs

1//! Bindings to the Multimodal Input-kit API of OpenHarmony
2//!
3//! Available with API-level 12 and newer
4//!
5//! Official documentation: <https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V14/input-V14>
6//!
7//! ## Feature flags
8#![cfg_attr(
9    feature = "document-features",
10    cfg_attr(doc, doc = ::document_features::document_features!())
11)]
12#![cfg_attr(docsrs, feature(doc_cfg))]
13#![cfg(feature = "api-12")]
14#![cfg_attr(docsrs, doc(cfg(feature = "api-12")))]
15
16#[link(name = "ohinput")]
17extern "C" {}
18
19pub mod axis_type;
20pub mod input_manager;
21pub mod key_code;