ableos_userland/programs/aidl/assets/core.idl

22 lines
260 B
Plaintext
Raw Normal View History

2023-05-05 11:21:24 +00:00
Alias Byte = U8;
Alias Int = U32;
Alias String = Vector<Byte>;
2023-05-04 07:27:04 +00:00
2023-05-05 11:21:24 +00:00
Enumeration Boolean {
2023-05-04 07:27:04 +00:00
False = 0,
True = 1,
}
2023-05-05 11:21:24 +00:00
Enumeration Nothing {}
Enumeration Option<T> {
None,
Some(T)
2023-05-04 07:27:04 +00:00
}
Structure Version {
major: Byte,
minor: Byte,
patch: Byte,
2023-05-05 11:21:24 +00:00
}