1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
//! # Android NDK
//!
//! Bindings to the Android NDK.
//!
//! Currently has bindings:
//!  * `AInputEvent`, `AKeyEvent`, and `AMotionEvent`, in the `event` module
//!  * `ALooper`, in the `looper` module
//!  * `AInputQueue`, in the `queue` module

pub mod event;
pub mod looper;
pub mod queue;