home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Utilities / amiCheck / Source / statsPanel.h < prev   
C/C++ Source or Header  |  1995-09-16  |  690b  |  33 lines

  1. #ifndef STATSPANEL_H
  2. #define STATSPANEL_H
  3.  
  4. /************************************************************************
  5. *   statsPanel.h:
  6. *   global externs for the statistics panel
  7. *   
  8. *************************************************************************/
  9.  
  10. /* gadget enumerations */
  11. enum
  12. {
  13.     GID_STPCATLIST,
  14.     GID_STPFILTSUM,
  15.     GID_STPTOTSUM,
  16.     GID_STPFILTNUM,
  17.     GID_STPTOTNUM,
  18.     GID_STPTOTDEP,
  19.     GID_STPTOTWITH,
  20.     GID_STPFILTDEP,
  21.     GID_STPFILTWITH,
  22.     GID_STPOK,
  23.     GID_STPLIST,
  24. };
  25.              
  26. /* layout structures */
  27. extern GadgetSpec *STP_StatSpecs[];
  28. extern ULONG STP_StatPanel[];
  29. extern GUIFront *statGUI;
  30.  
  31. void StatGUI(void);                         
  32. #endif
  33.