when struct defined in this style:
tyedef struct{
...
}aaa;
aaa bbb;
The output json will not contain the name "aaa", just show unamed_xxxx. So the json can output the real struct name directly?
output such as:
"bbb": {
"type": {
"kind": "struct",
"name": "aaa"
},
"offset": 7
}
when struct defined in this style: tyedef struct{ ... }aaa; aaa bbb; The output json will not contain the name "aaa", just show unamed_xxxx. So the json can output the real struct name directly? output such as: "bbb": { "type": { "kind": "struct", "name": "aaa" }, "offset": 7 }