Can someone give me some working examples of how you can create, add messages, read from, and destroy a private message queue from C++ APIs? I tried the MSDN pieces of code but i can't make them work properly.
Thanks
|
|
Can someone give me some working examples of how you can create, add messages, read from, and destroy a private message queue from C++ APIs? I tried the MSDN pieces of code but i can't make them work properly. Thanks |
||||
|
|
|
Actualy this is the code i was interested in:
This presumably creates a queue... but there are some parts missing for this to work, that's why i need a simple example that works. |
||
|
|
|
Not quite sure how you'd go about creating or destroying message queues. Windows should create one per thread. If you're using MFC, any CWinThread and CWnd derived class has a message queue that's trivial to access (using PostMessage or PostThreadMessage and the ON_COMMAND macro). To do something similar with the windows API, I think you need to write your own message pump, something like CWinApp's run method.
...is the example from the MSDN documentation. Is this what you're using? What doesn't work? |
||
|