I’m thinking about using the windows.h library for multithreading. I was exploring the web for some examples, but the only one I got here was very complex. Are there any simple examples that I can see?
If you use Qt, using the QThread library is a good way to multithread.
Are you using VC++? If so what version of it? The VC++11 Beta adds std::thread. Since VC++10 there has been the PPL (Parallel Patterns Library). The CRT also has some threading functions (_beginthread etc).