#include <revolution/kbd.h>
KBDEc KBDSetLockProcessing(KBDChannel ch, BOOL enable);
ch |
Keyboard channel to set. |
enable |
A BOOL value to use as the modifier processing state. |
KBDEc |
Keyboard error code. KBD_SUCCESS if the call was successful.KBD_ERR_NOT_INITIALIZED if the library was not initialized.KBD_ERR_BAD_VALUE if ch is out of range. |
Sets the current modifier processing state of the USB keyboard on channel ch.
If the lock modifier processing state is TRUE, the KBD library processes all modifier keys as usual and sets the KBDModState accordingly. A lock modifier processing state of FALSE means that the KBD library will not process the locking modifier key presses, and the following KBDModState is left unchanged:
KBD_MS_CAPS_LOCKKBD_MS_NUM_LOCKKBD_MS_SCROLL_LOCKKBD_MS_LANG1KBD_MS_LANG2The processing of other KBDModState is still handled as usual. That is, pressing the Shift key will still set the KBD_MS_SHIFT bit in the KBDModState, regardless of the lock modifier processing state. KBDModState is still used to translate HID codes into Unicodes.
The default value for enable is TRUE.
2007/03/19 Initial version.