David Reiss | 1c1ca74 | 2008-06-10 22:57:21 +0000 | [diff] [blame] | 1 | -module(test_service). |
2 | % | ||||
3 | % Test service definition | ||||
4 | |||||
5 | -export([function_info/2]). | ||||
6 | |||||
7 | function_info(add, params_type) -> | ||||
8 | {struct, [{1, i32}, | ||||
9 | {2, i32}]}; | ||||
10 | function_info(add, reply_type) -> i32. |