Is this type of StructureUnion Supported?

Just starting out? Need help? Post your questions and find answers here.
HarryO
User
User
Posts: 42
Joined: Wed May 07, 2003 4:25 am
Location: Palatine,IL.,USA

Is this type of StructureUnion Supported?

Post 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