ableos_userland/programs/aidl/assets/core.idl

21 lines
219 B
Plaintext
Raw Normal View History

2023-05-06 15:57:45 +00:00
Alias Byte = u8;
Alias Int = u32;
2023-05-04 07:27:04 +00:00
2023-05-05 11:21:24 +00:00
Enumeration Nothing {}
Enumeration Option<T> {
None,
Some(T)
2023-05-04 07:27:04 +00:00
}
2023-05-06 15:57:45 +00:00
Enumeration Result<T, E> {
Ok(T),
Err(E)
}
2023-05-04 07:27:04 +00:00
Structure Version {
2023-05-05 14:15:38 +00:00
major: Byte,
minor: Byte,
patch: Byte,
2023-05-05 11:21:24 +00:00
}