我希望在 IDA 中定义一个结构,例如:
struct StructA {
int a;
int b;
} StructA;
struct StructB {
StructA a;
int b;
} StructB;
我可以在 IDA 的结构定义框中执行此操作而不必重新定义StructAin 中的所有成员StructB吗?
我希望在 IDA 中定义一个结构,例如:
struct StructA {
int a;
int b;
} StructA;
struct StructB {
StructA a;
int b;
} StructB;
我可以在 IDA 的结构定义框中执行此操作而不必重新定义StructAin 中的所有成员StructB吗?
是的。在 中StructB,选择要转换为子结构的字段或按 来创建新字段D。选择给定的字段后,按Alt+Q并选择StructA该字段。