I’m interested in clearing multiple structs I use in a large loop. Can I pass multiple structs to a single instance of StructClear():
StructClear( Struct1, Struct2, Struct3 );
or do I have to call it multiple times:
StructClear( Struct1 );
StructClear( Struct2 );
StructClear( Struct3 );
Thanks in advance for your help.
Another way to work with this is you could nest your structs in one master struct…then if you wanted to clear all, clear the master struct.