Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 IDA Pro 中设置数组元素的大小?我正在创建一个我想要拥有 DWORD 数组的结构。但它默认为字节。
我有 IDA Pro 6.1
您可以在本地类型窗口 ( )中使用纯 C 进行编辑struct和定义。请注意,IDA 不会在成员之间应用任何自动结构填充,因此有时您必须插入虚拟成员。enumShift-F1
struct
enum
Shift-F9或者,在结构DWORD窗口*(
DWORD
在按下Shift-8定义数组之前,首先通过双击将类型定义为 Dword d,然后数组将是 dwords 而不是字节。