servicepoint/crates/servicepoint_binding_c/src/lib.rs

25 lines
368 B
Rust
Raw Normal View History

2024-05-28 19:38:43 +02:00
//! C API wrapper for the `servicepoint` crate.
2024-09-05 21:15:53 +02:00
pub use crate::c_slice::SPByteSlice;
2024-05-28 21:25:59 +02:00
pub mod bit_vec;
2024-05-28 19:38:43 +02:00
2024-06-23 15:42:15 +02:00
pub mod brightness_grid;
2024-05-28 19:38:43 +02:00
pub mod command;
2024-05-28 19:38:43 +02:00
pub mod connection;
2024-05-28 19:38:43 +02:00
pub mod packet;
2024-05-28 19:38:43 +02:00
pub mod pixel_grid;
2024-06-23 15:42:15 +02:00
pub mod c_slice;
pub mod cp437_grid;
2024-09-05 21:15:53 +02:00
pub mod constants;
/// Type alias for documenting the meaning of the variable in enum values
pub type SPOffset = usize;