I read that question here (How do you set registers as structs within a function in IDA?) but this applies only to individual lines.
Is it possible to set a register as a basepointer for a scope so that all usages of this register will be using the structure you assigned it to?
mov eax, [ebx+C]
xor [ebx+1C], eax
mov eax, [ebx+24]
xor [ebx+68], eax
mov eax, [ebx+C]
xor [ebx+30], eax
mov eax, [ebx+24]
xor [ebx+48], eax
...
Or do you have to apply T on each occurence individually?
Tshortcut as you would for a single usage. But be patient, the dialog window can take quite a while to appear, especially if you have a lot of structs defined or the selection is large. – DCoder Dec 08 '13 at 17:46