I've added a menu to another application using AppendMenu and now I want to setup a callback so that I can respond to the click events of the menu items.
How would I go about doing it? Do i have to subclass the other application?
I did this a while ago for a plugin I still need to finish/release (there are to many of them...), I subclassed it using WM_COMMAND and a dll. Then the dll sends a WM_USER message to my application.