ohos_vsync_sys/
lib.rs

1//! Bindings to the native vsync APIs
2//!
3//! See also [Native Vsync Development](https://docs.openharmony.cn/pages/v5.0/en/application-dev/graphics/native-vsync-guidelines.md).
4//!
5//!
6//! ## Feature flags
7#![cfg_attr(
8    feature = "document-features",
9    cfg_attr(doc, doc = ::document_features::document_features!())
10)]
11#![cfg_attr(docsrs, feature(doc_cfg))]
12
13#[link(name = "native_vsync")]
14extern "C" {}
15
16mod vsync_ffi;
17pub use vsync_ffi::*;