Explain Synchronizing Threads in MFC?
Csemaphore : used to share objects between Threads in a Process (all threads can access simultaneously) CcriticalSection:used to share objects between Threads in a Process (Only one thread can access at a time) Cmutex : used to share objects between Applications in different Process (Only one thread can access at a time) Cevent : to make the application to wait for something to happen When to Use the Synchronization Classes