27 lines
269 B
C
27 lines
269 B
C
|
#ifndef ble_rpc_h__
|
|||
|
#define ble_rpc_h__
|
|||
|
|
|||
|
|
|||
|
|
|||
|
// 获取指定index函数的帮助,请保证str的空间大于128
|
|||
|
int rpc_get_help(void *obj,char *str,int index);
|
|||
|
|
|||
|
|
|||
|
int rpc_get_fun1(void *obj,int *out,int a,int b);
|
|||
|
|
|||
|
|
|||
|
int rpc_set_fun2(void *obj,int a);
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
|