Regarding WM_KEYDOWN message I have read:
"In all four of the keyboard messages discussed so far, the wParam parameter contains the virtual-key code of the key. The lParam parameter contains some miscellaneous information packed into 32 bits. You typically do not need the information in lParam. One flag that might be useful is bit 30, the "previous key state" flag, which is set to 1 for repeated key-down messages." https://msdn.microsoft.com/en-us/lib...=vs.85%29.aspx
Then I expect, that if I press ctrl and hold, the debugger should jump to line 9 because the message should be send repeatedly so the first result should be 0 and the second should be 1. Am I right in my assumption? But the result is false so nothing happens. Why? Is the message send no repeatedly? And so status 0 is correct?