http://bugs.winehq.org/show_bug.cgi?id=9615
Jason Edmeades us@edmeades.me.uk changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |us@edmeades.me.uk
--- Comment #8 from Jason Edmeades us@edmeades.me.uk 2007-09-11 17:35:51 --- The trap is caused by SendMessageW( mt.hOwnerWnd, WM_ENTERIDLE, MSGF_MENU, win); in MENU_TrackMenu because wFlags is missing TPM_ENTERIDLEEX win is NULL, and things go wrong.
(It will get further if you temporarily change it to: SendMessageW( mt.hOwnerWnd, WM_ENTERIDLE, MSGF_MENU, (LPARAM)menu->hWnd); /*win );*/ )
However, then the menus appear but do not disappear. The root cause appears to be TrackMenuEx not being implemented although I am not 100% convinced. Certainly the trackmenu* functions do not pass through TPM_ENTERIDLEEX (which is purely internal) and I am not sure why not or why it only sends the menu->hWnd if it has been set.
Putting it down for now to see if this triggers any thoughts from anyone else, otherwise I might have another play later.