Commit 9d2d34fb authored by Ulrich Czekalla's avatar Ulrich Czekalla Committed by Alexandre Julliard

Send WM_HELP message when F1 is pressed.

parent 33536e27
......@@ -481,6 +481,9 @@ static LRESULT DEFWND_DefWinProc( WND *wndPtr, UINT msg, WPARAM wParam,
return result;
}
case WM_HELP:
SendMessageA( wndPtr->parent->hwndSelf, msg, wParam, lParam );
break;
}
return 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment