Added empty bootstrap.c and its build target
[AROS.git] / workbench / tools / KeyShow / keyboardgroup_class.h
blob31a543dadabbdcde140079e05efb4f8e81d34736
1 #ifndef KEYBOARDGROUP_CLASS_H
2 #define KEYBOARDGROUP_CLASS_H
4 /*
5 Copyright © 2012, The AROS Development Team. All rights reserved.
6 $Id$
7 */
9 #include <exec/types.h>
10 #include <libraries/mui.h>
12 /*** Identifier base ********************************************************/
13 #define MUIB_KeyboardGroup (TAG_USER | 0x10000000)
15 /*** Attributes *************************************************************/
16 #define MUIA_KeyboardGroup_Type (MUIB_KeyboardGroup | 0x00000000) /* I-- ULONG */
18 /*** Values *****************************************************************/
19 #define MUIV_KeyboardGroup_Type_Amiga (0ul)
20 #define MUIV_KeyboardGroup_Type_PC105 (1ul)
21 #define MUIV_KeyboardGroup_Type_PC104 (2ul)
23 /*** Variables **************************************************************/
24 extern struct MUI_CustomClass *KeyboardGroup_CLASS;
26 /*** Macros *****************************************************************/
27 #define KeyboardGroupObject BOOPSIOBJMACRO_START(KeyboardGroup_CLASS->mcc_Class)
30 #endif /* KEYBOARDGROUP_H */