qicosmos/rest_rpc

请问怎么支持union类型的参数?

Opened this issue · 0 comments

请问怎么支持union类型的参数, union内部包括自定义结构体的情况。例如
struct Params{
int type;
union {
struct Type0 {
int param1;
int param2;
...
}type0;
};
};