casting(int)

BlitzMax Forums/BlitzMax Programming/casting(int)

Nigel Brown(Posted 2005) [#1]
Is it possible to get a pointer of a type other than 'byte pointer' to a bank or cast to another type?
I need to pass a dll function an :Int Ptr


ImaginaryHuman(Posted 2005) [#2]
Just use

Int Ptr(Byte Ptr(thing))

or

Int Ptr(mytypeinstance)