I already use some new features from C++0x in Visual C++ 2010, like regular expressions or lambda functions.
But there is one major feature that is missing: the <thread>
header.
Do you know any code which could act as a replacement?
For the moment I'm using boost's thread, but it's not exactly the same as the standard, and it gives me huge compile times. I also found just::thread, but being an amateur I don't want to spend money on it.
I don't think it would be too difficult to code (though I may be wrong) but I don't know the Win32 API enough to do so.