1 #ifndef INTUITION_ICCLASS_H 2 #define INTUITION_ICCLASS_H 3 4 /* 5 intuition interconnection class definitions 6 7 Copyright © 2002-2008 The MorphOS Development Team, All Rights Reserved. 8 */ 9 10 #ifndef UTILITY_TAGITEM_H 11 # include <utility/tagitem.h> 12 #endif 13 14 15 #define ICM_Dummy (0x0401) 16 #define ICM_SETLOOP (ICM_Dummy + 1) 17 #define ICM_CLEARLOOP (ICM_Dummy + 2) 18 #define ICM_CHECKLOOP (ICM_Dummy + 3) 19 20 21 #define ICA_Dummy (TAG_USER + 0x40000) 22 #define ICA_TARGET (ICA_Dummy + 1) 23 #define ICA_MAP (ICA_Dummy + 2) 24 #define ICSPECIAL_CODE (ICA_Dummy + 3) 25 26 27 #define ICTARGET_IDCMP (~0L) 28 29 30 #endif /* INTUITION_ICCLASS_H */