You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
443 B
21 lines
443 B
pEpACIDLang {
|
|
include pEpACIDLang.yml2
|
|
|
|
package idl_test {
|
|
api typesys {
|
|
deftype deftype1 as size;
|
|
deftype deftype2 as string;
|
|
deftype stringlist as list<string>;
|
|
|
|
enum enum1 {
|
|
item item1;
|
|
item item2;
|
|
};
|
|
|
|
struct struct1 {
|
|
field int int1;
|
|
field size size1;
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|