C
C
Cyril2014-03-29 18:20:09
User interface
Cyril, 2014-03-29 18:20:09

What are some examples of a multi-threaded GUI application with MFC?

Tell me, where can I see a good example of a GUI application on MFC with separation of interface threads and the operation of the application itself?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
@
@ntkt, 2014-03-29
@endemic

What exactly do you want to see in this example?
After all, there is no special specifics: MFC is just a plus wrapper over WinAPI, they did not add extra serialization and thread safety anywhere (for overhead). Most of the ways to pull the mustache of UI objects are wrappers over PostMessage/SendMessage/... , which are serialized or not serialized in the same way as the underlying WinAPI functions, just trying and smoking MSDN.
For synchronization in general in MFC, again, just wrappers over WinAPI are made.
Examples can be found at least on CodeProject: codeproject mfc threading

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question