Hello Charles, im struggling because pointers do not behave the same in 32bit and 64 bit compilations,
why is that and how can i make them work the same?
For example this:
function assign(int d, byval sys * udt) as long
Invoked like this class method:
EXAMPLE abc
udt.assign(1, @abc)
And used like this inside udt.assign:
' Clear previous contents.
copy(@udt, z, len(z))
Works in 32 bits... crashes in 64 bit mode.