Add an INOUT argument to the AppBroker test

This commit is contained in:
Pierre Pronchery 2016-09-09 01:48:50 +02:00
parent cd20ada69e
commit 18402def5a
2 changed files with 5 additions and 0 deletions

View File

@ -72,5 +72,6 @@ typedef String ** STRING_INOUT;
/* calls */
void Test_Test(App * app, AppServerClient * client, INT32 i32);
void Test_Test2(App * app, AppServerClient * client, INT32_INOUT i32);
#endif /* !Test_Test_H */

View File

@ -4,3 +4,7 @@ service=Test
[call::Test]
#ret=void
arg1=INT32,i32
[call::Test2]
#ret=void
arg1=INT32_INOUT,i32