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

  1. #ifndef ANALYSISPANEL_H
  2. #define ANALYSISPANEL_H
  3.  
  4. /************************************************************************
  5. *   analysispanel.h:
  6. *   global externs for the analysis panel
  7. *   
  8. *************************************************************************/
  9.  
  10. /* gadget enumerations */
  11. enum
  12. {
  13.     GID_ANFIELD,
  14.     GID_ANBAL,
  15.     GID_ANSCROL,
  16.     GID_ANSCALE,
  17.     GID_ANTYPE, 
  18.     GID_ANOK,
  19. };
  20.  
  21.                         
  22. /* layout structures */
  23. extern GadgetSpec *AN_MainSpecs[];
  24. extern ULONG AN_MainPanel[];
  25. extern GadgetSpec an_gadgetspecs[]; 
  26. extern GUIFront *analGUI;                         
  27.  
  28. BOOL AnalysisGUI(void);
  29. BOOL AnalysisSetup(void);
  30. void AnalysisFree(void);
  31. #endif
  32.