1
0
mirror of https://github.com/haiwen/libsearpc.git synced 2025-09-13 05:25:40 +00:00

add all files

This commit is contained in:
lins05
2011-04-08 20:58:15 +08:00
parent a4017c7c3e
commit 13d68a1c86
41 changed files with 41778 additions and 0 deletions

20
rpc_table.py Normal file
View File

@@ -0,0 +1,20 @@
"""
Define RPC functions needed to generate
"""
# [ <ret-type>, [<arg_types>] ]
func_table = [
[ "int", ["string"] ],
[ "int", ["string", "string"] ],
[ "string", [] ],
[ "string", ["string"] ],
[ "string", ["string", "int"] ],
[ "objlist", [] ],
[ "objlist", ["string"] ],
[ "objlist", ["int", "int"] ],
[ "objlist", ["string", "int"] ],
[ "objlist", ["string", "int", "int"] ],
[ "objlist", ["string", "string", "int"] ],
[ "object", [] ],
[ "object", ["string"] ],
]