casting(int)

BlitzMax Forums/BlitzMax Programming/casting(int)

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

Just use

Int Ptr(Byte Ptr(thing))

or

Int Ptr(mytypeinstance)