Search:

Type: Posts; User: bithub

Search: Search took 0.03 seconds.

  1. Thread: C++ confusion

    by bithub
    Replies
    14
    Views
    2,943

    You can create multiple message loops. I just...

    You can create multiple message loops. I just can't fathom a case where this would be desirable.
  2. Thread: C++ confusion

    by bithub
    Replies
    14
    Views
    2,943

    If you don't want to use a dialog window, then...

    If you don't want to use a dialog window, then your DLL should call SetWindowsHookEx() to set a WH_GETMESSAGE hook. This will allow your DLL to get the window messages from the main message pump so...
  3. Thread: C++ confusion

    by bithub
    Replies
    14
    Views
    2,943

    No you wont. Windows do not block, they simply...

    No you wont. Windows do not block, they simply return to the message loop. If your window is blocking, chances are you are creating it incorrectly.
  4. Thread: C++ confusion

    by bithub
    Replies
    14
    Views
    2,943

    Why are you creating multiple threads for this? ...

    Why are you creating multiple threads for this? It seems like a very bad idea. All window handling code should be done in the main message loop thread.
Results 1 to 4 of 4