ableos/kernel/src/ipc/message.rs

8 lines
185 B
Rust
Raw Normal View History

//! An ipc message structured in a nice convenient way
2023-05-15 07:19:34 +00:00
use alloc::vec::Vec;
/// TODO: Extend this into a full structure
/// DEPEND: This depends on an IDL
2023-05-15 07:19:34 +00:00
pub type Message = Vec<u8>;