11-17-2015, 07:41 PM
Macro Macro2762
Not all types are supported with setstruct/getstruct. For example types with arrays are not supported.
type TOTO str's str'd int'r
TOTO g
g.s="mmm"; g.d="vvvv"; g.r=8
str file="C:\test\TOTO.txt"
str s1.getstruct(g 1)
s1.setfile(file)
str s2.getfile(file)
;out s2
TOTO g2; s2.setstruct(g2)
out g2.d
;del fileNot all types are supported with setstruct/getstruct. For example types with arrays are not supported.
