在 IDA 中定义结构体时,我可以定义另一个结构体类型的字段吗?

逆向工程 艾达 结构
2021-07-06 09:08:49

我希望在 IDA 中定义一个结构,例如:

struct StructA {
    int a;
    int b;
} StructA;

struct StructB {
    StructA a;
    int b;
} StructB;

我可以在 IDA 的结构定义框中执行此操作而不必重新定义StructAin 中的所有成员StructB吗?

1个回答

是的。在 中StructB,选择要转换为子结构的字段或按 来创建新字段D选择给定的字段后,按Alt+Q并选择StructA该字段。