help with threading

BlitzMax Forums/BlitzMax Programming/help with threading

Mook(Posted 2009) [#1]
How do i thread a method within a type?

i would like to do something like this




plash(Posted 2009) [#2]
The reason that does not work is because domath is a method instead of a function.
Also, the CreateThread requires a certain set of parameters - it would not work even if you called domath directly as a function (in its current form).


Mook(Posted 2009) [#3]
ok, thanks