Can I use THREADS in BLITZPLUS ?

BlitzPlus Forums/BlitzPlus Programming/Can I use THREADS in BLITZPLUS ?

dman(Posted 2013) [#1]
trying to create an app with multithreading, so the app can draw something and handle buttons and inputs.

Is it possible to use the windows events like threads ?

can someone help.


Yasha(Posted 2013) [#2]
Natively, no.

You can use FastPointer for this if you're feeling desperate, but I wouldn't advise it because it's rather unsafe.

In general you're likely to be better off investigating soft-threading, by breaking your tasks up into short segments and interleaving them on your standard one OS thread.