~francis-aspl/vortexlibrary/trunk

1
2
3
4
5
6
7
8
9
10
11
12
/* include example */
xml-rpc interface test {
	/* add two integers */
	int sum (int a, int b) {

		/* sum values received */
		return do_sum_operation (a, b);

	} options {
		include on body "do_sum_operation.c";
	}
}