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

  1. #ifndef SCRIPTPANEL_H
  2. #define SCRIPTPANEL_H
  3.  
  4. /************************************************************************
  5. *   scriptPanel.h:
  6. *   global externs for the editing of a script
  7. *   
  8. *************************************************************************/
  9.  
  10. /* gadget enumerations */
  11. enum
  12. {
  13.     GID_SCPTEMPLIST,
  14.     GID_SCPLIST,
  15.     GID_SCPOPEN,
  16.     GID_SCPSAVE,
  17.     GID_SCPSAVEAS,
  18.     GID_SCPUP,
  19.     GID_SCPDOWN,
  20.     GID_SCPTOP,
  21.     GID_SCPBOTTOM,
  22.     GID_SCPREMOVE,
  23.     GID_SCPCANCEL,
  24. };
  25.              
  26. /* layout structures */
  27. extern GadgetSpec *SCP_ScriptSpecs[];
  28. extern ULONG SCP_ScriptPanel[];
  29. extern GUIFront *scriptGUI;
  30.  
  31. void ScriptGUI(void);                         
  32. #endif
  33.