]> rtime.felk.cvut.cz Git - frescor/forb.git/blob - tests-idl/myinterface.idl
forb: Fix incorrect parameter of forb_peer_put()
[frescor/forb.git] / tests-idl / myinterface.idl
1 struct struct_t {
2         long a, b;
3 };
4
5 typedef long mytype;
6
7 interface myinterface {
8         long add(in long a, in long b);
9         void get_last(out long a, out long b);
10         void square(inout long r);
11         void message(in string msg);
12         void last_message(out string msg);
13         void struct_method(in struct_t s, out struct_t ss);
14         void obj_method(in myinterface mi, out myinterface mo);
15         void mytype_method(in mytype mt, out mytype mtt);
16 };