Send WM_HELP message when F1 is pressed.

This commit is contained in:
Ulrich Czekalla 2000-02-16 21:22:18 +00:00 committed by Alexandre Julliard
parent 33536e2753
commit 9d2d34fbfd
1 changed files with 3 additions and 0 deletions

View File

@ -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;