1 #ifndef BUSY_MCC_H 2 #define BUSY_MCC_H 3 4 /* Busy.mcc include 5 ** Copyright © 2017 MorphOS Development Team 6 */ 7 8 #ifndef LIBRARIES_MUI_H 9 #include <libraries/mui.h> 10 #endif 11 12 #define MUIC_Busy "Busy.mcc" 13 #define BusyObject MUI_NewObject(MUIC_Busy 14 15 #define BusyBar BusyObject, MUIA_Busy_Speed, MUIV_Busy_Speed_User, End 16 17 /* methods */ 18 #define MUIM_Busy_Move 0x80020001 19 struct MUIP_Busy_Move { ULONG MethodID; }; 20 21 /* attributes */ 22 #define MUIA_Busy_Speed 0x80020049 23 #define MUIA_Busy_ShowHideIH 0x800200a9 24 25 /* special values */ 26 #define MUIV_Busy_Speed_Off 0 27 #define MUIV_Busy_Speed_User (-1) 28 29 #endif /* BUSY_MCC_H */