Skip to content
Snippets Groups Projects
Commit 87bca231 authored by Dennis Björklund's avatar Dennis Björklund Committed by Alexandre Julliard
Browse files

It's no error to send a WM_COMMAND to MenuHelp.

parent 567bcf13
No related branches found
No related tags found
No related merge requests found
......@@ -203,6 +203,16 @@ MenuHelp (UINT uMsg, WPARAM wParam, LPARAM lParam, HMENU hMainMenu,
}
break;
case WM_COMMAND :
TRACE("WM_COMMAND wParam=0x%X lParam=0x%lX\n",
wParam, lParam);
/* WM_COMMAND is not invalid since it is documented
* in the windows api reference. So don't output
* any FIXME for WM_COMMAND
*/
WARN("We don't care about the WM_COMMAND\n");
break;
default:
FIXME("Invalid Message 0x%x!\n", uMsg);
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment