My little wish is, to have the possibility of nested structures.
So, that we can put sub datasets in our structures.
Example C:
Code: Select all
typedef struct TEST {
dword dwTest1;
union {
dword dwTest2;
struct {
word wTest3;
word wTest4;
}
}
} TEST;
Code: Select all
Structure TEST
lTest1.l
StructureUnion
lTest2.l
StructureNested
wTest3.w
wTest4.w
EndStructureNested
EndStructureUnion
EndStructure
Wolf