Improve the "appbroker.sh" test

This commit is contained in:
Pierre Pronchery 2016-09-14 02:13:17 +02:00
parent 76f2febb8f
commit 68d65c1fa8
2 changed files with 8 additions and 3 deletions

View File

@ -12,6 +12,7 @@
/* calls */
void Test_Test(App * app, AppServerClient * client, int32_t i32);
void Test_Test2(App * app, AppServerClient * client, int32_t * i32);
bool Test_Test2(App * app, AppServerClient * client, int32_t * i32);
String const * Test_Test3(App * app, AppServerClient * client, int32_t *);
#endif /* !Test_Test_H */

View File

@ -2,9 +2,13 @@
service=Test
[call::Test]
#ret=void
ret=VOID
arg1=INT32,i32
[call::Test2]
#ret=void
ret=BOOL
arg1=INT32_INOUT,i32
[call::Test3]
ret=STRING
arg1=INT32_INOUT