I need to update my window some 25 times a second, or preferably 30. Now, I tried using SetTimer but if I give any value less than 55 milliseconds, it's updated as fast as if it were set at 55 milliseconds. This means I can only update 18.2 times per second. Anyone know how I can update faster? I don't want to have to use some other language's library just to do this, I'll need to do this just with the SDK routines.
Possibly use threads? One thread to check the system's internal timer and another that gets called? Do threads need to yield time to the system like the old-style Window processes? "Information has a tendency to be free. Which means someone will always tell you something you don't want to know."
Possibly use threads? One thread to check the system's internal timer and another that gets called? Do threads need to yield time to the system like the old-style Window processes? "Information has a tendency to be free. Which means someone will always tell you something you don't want to know."