graphics.library: In INVERSVID mode, don't clobber the GC's pens
[AROS.git] / compiler / include / libraries / kms.h
blobb21208f263f29b76dc993c49a0a52979e411655e
1 /*
2 Copyright © 2011, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #ifndef LIBRARIES_KMS_H
7 #define LIBRARIES_KMS_H 1
9 #include <devices/keymap.h>
10 #include <exec/libraries.h>
12 #define KMSNAME "kms.library"
14 struct KMSLibrary
16 struct Library kms_Lib;
17 UWORD kms_SwitchQual; /* Switch hotkey qualifier */
18 UWORD kms_SwitchCode; /* Switch hotkey code */
19 struct KeyMap *kms_AltKeymap; /* Alternate keymap pointer */
22 #define KMS_QUAL_DISABLE 0xFFFF /* Set kms_SwitchQual to this in order to turn off switcher */
23 #define KMS_CODE_NOKEY 0xFFFF /* Set kms_SwitchCode to this if the hotkey consists only of qualifiers */
25 #endif