Original Post
I am reading Windows 98 Programming from the Ground Up which is cautioning me to avoid using CreateThread() ExitThread() with the standard C libray. Instead I must use _beginthreadex() and _endthreadex(). Apparently not doing so on Visual C++ results in a small memory leak.
The book I am reading is obviously a bit dated and I am wondering whether this is still an issue. I want to avoid using platform specific code as much as possible.