我想在 Ida 中定义 struct ,但我只知道这个 struct 的一部分
我只知道在arr[12]
那个 int student_id 中,我不知道结构的其余部分。Ida 将该结构识别为char *
.
我如何定义该结构?
我想在 Ida 中定义 struct ,但我只知道这个 struct 的一部分
我只知道在arr[12]
那个 int student_id 中,我不知道结构的其余部分。Ida 将该结构识别为char *
.
我如何定义该结构?
就像是:
struct partially_known {
char gap0[12];
int student_id;
char gap10[32];
};