ableos_userland/programs/aidl/assets/examples.idl

13 lines
184 B
Plaintext
Raw Normal View History

2023-05-04 07:27:04 +00:00
Type UUID = Array[U8; 16];
Type Nanoseconds = U32;
Structure Duration{
secs: U64,
nanos: Nanoseconds,
}
Structure LinkedList{
data: Any,
child: Option<LinkedList>,
}