Page 1 of 1

Is this type of StructureUnion Supported?

Posted: Sat May 24, 2003 4:11 am
by HarryO
Can I use structures with-in a StructureUnion?

-------------Start of snippet----------

;constants
;
#Num_Elem.W = 9
#B_array_Size = 28
;
;Vars & Structures
;

Structure Lng_Arr
Word_1.w
LongWord_1.l
LongWord_2.l
WD_Arr.w[#Num_Elem]
EndStructure

Structure Def_Col
Line1.s
Line2.s
StructureUnion
B_Array.b[#B_array_Size]
Stuff.Lng_Arr
EndStructureUnion
EndStructure

------end of snippet---------

HarryO