up vote 0 down vote favorite
share [g+] share [fb]

I want to handle some SAPI messages from a DLL, which is some sort of plugin. How to handle messages/events inside a VC++ dll. The SAPI event handling is shown in the example at: http://msdn.microsoft.com/en-us/library/ms720165%28VS.85%29.aspx

link|improve this question

74% accept rate
feedback

3 Answers

up vote 5 down vote accepted

To process "normal" messages, you still need a Window object. It can be a special "message-only" window that only shares the messaging queue infrastructure with normal windows. To create it, first register your message handling class with RegisterClass(). Next, create an message queue by passing HWND_MESSAGE as the parent window to CreateWindow(). You will get back an HWND you can then to SAPI.

However, SAPI supports other interfaces as well. The ISpNotifySource documentation names 4: Windows messages, callbacks, events and COM (ISpNotifySink). To use callbacks, simply pass the address of one of your DLL methods to SetNotifyCallbackFunction.

link|improve this answer
feedback

If your code is running as a plugin, you might want to look at having SAPI call you back directly using ISpNotifySource::SetNotifyCallbackFunction instead of ISpNotifySource::SetNotifyWindowMessage. SAPI will then call your function directly when an event occurs.

link|improve this answer
Already told by MSalters – Priyank Bolia Sep 22 '09 at 9:33
feedback

WndProc is used to recieve all messages/events directed at a window.

Your DLL should create a window and wait for messages to the window. If possible, you should implement this in your main process, or you can have the dll create a seperate thread that would create the window and wait for the message, while the actual function returns control to the process.

link|improve this answer
creating a window is not possible in a plugin, does a invisible windows works and then how to use the WndProc in the dll, any example – Priyank Bolia Aug 16 '09 at 3:27
An invisible window receiving events is impossible, as far as I know. – Sahas Aug 16 '09 at 4:58
1  
Definitely possible. – MSalters Aug 17 '09 at 8:36
feedback

Your Answer

 
or
required, but never shown

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