CALL "C$KEYMAP" USING opCode [status] |
opCode | PIC 9(1) | Specifies the operation to be performed. Valid values are: 1 Save configuration 0 Restore configuration |
status | PIC S99 COMP-1. | Optional. It returns the function status: 1 Operation completed successfully. 0 Operation failed. |
set environment "key.f1" to "exception=1" *> from here and on when you press F1 it will return exception 1 ... call "c$keymap" using 1 *> save keyboard configuration set environment "key.f1" to "exception=101" *> from here and on when you press F1 it will return exception 101 ... call "c$keymap" using 0 *> restore keyboard configuration *> from here and on when you press F1 it will return exception 1 ... |