Send WM_HELP message when F1 is pressed.
This commit is contained in:
parent
33536e2753
commit
9d2d34fbfd
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue