blob: b7f00d9fd3bea29602a7389dbc301610d2bc23d3 [file] [log] [blame]
David Reiss1c1ca742008-06-10 22:57:21 +00001-module(test_service).
2%
3% Test service definition
4
5-export([function_info/2]).
6
7function_info(add, params_type) ->
8 {struct, [{1, i32},
9 {2, i32}]};
10function_info(add, reply_type) -> i32.