How could retrieve the data with a pointer?
It is to do a algorithm with lists.
Very thank you.
It is to do a algorithm with lists.
[ autoit ]
Local $str = "int var1;ptr var2" Local $a1 = DllStructCreate($str) Local $a2 = DllStructCreate($str) DllStructSetData($a2, "var1", 200) DllStructSetData($a1, "var1", 100) DllStructSetData($a1, "var2", DllStructGetPtr($a2,1)) $pointer=DllStructGetPtr($a2,1)
Very thank you.