How to create threads with Win32 API?

I have written a TCP server with Win32 API and C++ but it's single-threaded. Can anyone tell me how would I go about making it multi-threaded? I imagine for every new accepted connection, I'd have to spawn a thread that takes care of it. But I have never had experience with threading in Win32. Can anyone tell me how I would go about threaded programming with Win32 and C++?


Read the documentation of :

  • CreateThread Function
  • And you can also see an example in my answer here:

  • Multithreading in c++
  • run threads of class member function in c++
  • 链接地址: http://www.djcxy.com/p/54656.html

    上一篇: 如何从一个EER图更新2个不同的模式?

    下一篇: 如何使用Win32 API创建线程?