Sending messages in server
Sending messages in server
We use SendMessageW for sending messages to windows.Is it possible to send messages to windows while in server?
Re: Sending messages in server
Huh what? What server? You can't send any windows messages from/to outside of Wine if that's what you mean.sainath wrote:Is it possible to send messages to windows while in server?
No, you can't use SendMessage (or it's wineserver equivalent).sainath wrote:Sry for not asking the question clearly
Server means wine server.
When we go to server to handle request,is it possible to send messages to window, like we do using SendMessageW().
At best you can post a message into required thread's queue. This means you won't get result back. See post_message() function.