help with threading
BlitzMax Forums/BlitzMax Programming/help with threading
| ||
How do i thread a method within a type? i would like to do something like this |
| ||
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). |
| ||
ok, thanks |