Is there any way to know whether a MFC message loop is already running?

EDIT: Context: A library (with event handling) needs to know whether its event filtering has to attach to an existing MFC message loop or create its own message loop: in case a main message loop already exists it must not create its own loop because it would be blocking.

link|improve this question

75% accept rate
In what situation? What are you trying to do? – Joel Jan 14 '09 at 19:21
feedback

1 Answer

up vote 0 down vote accepted

There is no way to do it without waiting some time, for instance while trying to send an event and wait for it, or wait 5 sec using a special MFC function which is dedicated to detect stalled applications (which one? I can't remember its name...).

If you need to do it, find another way, make other assumptions. Sorry.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.