I have a list of function pointers and first I need to find a way to launch one or more of them on a single thread. Then ultimately I need to be able to launch many threads with one or more functions running on each thread. The problem is that I don't know what the function pointers are or how many there are or which ones should be launched together on any particular thread until run time. Right now I'm using CmtScheduleThreadPoolFunction to launch the threads.
↧