1 #ifndef CPUMONITOR_PRIVATE_H 2 #define CPUMONITOR_PRIVATE_H 3 4 #ifndef GRAPH_MCC_H 5 #include <mui/Graph_mcc.h> 6 #endif 7 8 #define MUIC_Cpumonitor "Cpumonitor.mcc" 9 #define CpumonitorObject MUI_NewObject(MUIC_Cpumonitor 10 11 #define MUIA_Cpumonitor_FilterTask (0xfed10000 + 12) /* ISG STRPTR Defaults to NULL (no filtering) */ 12 #define MUIA_Cpumonitor_LastValue (0xfed10000 + 13) /* ..G FLOAT */ 13 #define MUIA_Cpumonitor_TaskEncounter (0xfed10000 + 14) /* ..G BOOL */ 14 #define MUIA_Cpumonitor_DnetcMode (0xfed10000 + 15) /* ISG BOOL (not supported) */ 15 #define MUIA_Cpumonitor_QuickMode (0xfed10000 + 17) /* ISG BOOL Defaults to TRUE */ 16 17 #define MUIV_Cpumonitor_FilterTask_Dnetc 1 18 19 #define MUIM_Cpumonitor_Reset MUIM_Graph_Reset 20 #define MUIM_Cpumonitor_Clone MUIM_Graph_Clone 21 22 struct MUIP_Cpumonitor_Clone 23 { 24 IPTR methodid; 25 APTR target; 26 }; 27 28 #endif