Multithreading with C and Win32

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

Microsoft Visual C++ provides support for creating multithread applications with Microsoft Windows: Windows XP, Windows 2000, Windows NT, Windows Me, and Windows 98. You should consider using more than one thread if your application needs to manage multiple activities, such as simultaneous keyboard and mouse input. One thread can process keyboard input while a second thread filters mouse activities. A third thread can update the display screen based on data from the mouse and keyboard threads. At the same time, other threads can access disk files or get data from a communications port.

With Visual C++, there are two ways to program with multiple threads: use the Microsoft Foundation Class (MFC) library or the C run-time library and the Win32 API. For information about creating multithread applications with MFC, see Multithreading with C++ and MFC after reading the following topics about multithreading in C.

These topics explain the features in Visual C++ that support the creation of multithread programs.

What do you want to know more about?

See Also

Multithreading Support for Older Code (Visual C++)