Structure Pointer ?
Posted: Mon Nov 13, 2006 9:00 pm
We have structure for Byte, Long, Quad, Float, String, etc
What about a structure for pointer ?
Why this ?
I have an array of pointer
And i need to copy this array to another array
So i have to write
May be this structure can be add in resident file ? or may be i'm wrong to do like this ?
What about a structure for pointer ?
Code: Select all
Structure Pointer
*p
EndStructure
I have an array of pointer
Code: Select all
Dim *Array(2,2,2)
Code: Select all
Dim *TempArray(2,2,2)
Code: Select all
CopyMemory(*Array(), *TempArray(), SizeOf(Pointer) * 27)