dolphin17
dolphin17

Reputation: 13

Accelerator in WinAPI with 2 alphabetical keys

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

Answers (1)

David Heffernan
David Heffernan

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

Related Questions