Reputation: 13
Is there a way to create an accelerator in WinAPI with two alphabetical keys? For example, Ctrl+A+S. How a resource should look like in this case?
Upvotes: 0
Views: 30
Reputation: 612794
Win32 accelerators of this form are not supported. If you wish to support such key presses, you need to implement the input handling manually.
Upvotes: 1