1 #ifndef GRAPH_MCC_H
    2 #define GRAPH_MCC_H
    3 
    4 #ifndef EXEC_TYPES_H
    5 #include <exec/types.h>
    6 #endif
    7 
    8 #define MUIC_Graph	"Graph.mcc"
    9 #define GraphObject	MUI_NewObject(MUIC_Graph
   10 
   11 #define MUIA_Graph_MaxEntries      0xfed10005 // ULONG, I*G
   12 #define MUIA_Graph_Max             0xfed10006 // ULONG, ISG
   13 #define MUIA_Graph_DrawBackCurve   0xfed10007 // BOOL, ISG
   14 #define MUIA_Graph_SetMax          0xfed10008 // BOOL, I
   15 
   16 #define MUIM_Graph_AddEntry        0xfed10009
   17 struct MUIP_Graph_AddEntry { ULONG methodid; ULONG value; ULONG value_back; };
   18 #define MUIM_Graph_Reset           0xfed1000A
   19 struct MUIP_Graph_Reset { ULONG methodid; };
   20 #define MUIM_Graph_Clone           0xfed10012
   21 struct MUIP_Graph_Clone { ULONG methodid; APTR  target; };
   22 
   23 
   24 #endif /* GRAPH_MCC_H */