home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 514a.lha / PPB_2.05 / GadSel / gadsel.h < prev    next >
C/C++ Source or Header  |  1991-06-07  |  810b  |  30 lines

  1. /*******************************************************************************
  2. *
  3. *        file name:    gadsel.h
  4. *        author:        Thomas C. DeVeau
  5. *        creation date:    8-5-90
  6. *        purpose:    structure definition and function prototype
  7. *
  8. *******************************************************************************/
  9. #ifndef GADSEL_H
  10. #define GADSEL_H    1
  11.  
  12. #ifndef INTUITION_INTUITION_H
  13. #include <intuition/intuition.h>
  14. #endif
  15.  
  16. struct GadList {
  17.     short GadCount;            /* number of gadgets in list */
  18.     struct Gadget *GadgetList[20];    /* gadget list */
  19. };
  20.  
  21. struct ITextList {
  22.     short ITCount;            /* number of itext structs in list */
  23.     struct IntuiText *ITList[30];    /* itext list */
  24. };
  25.  
  26. void GadgetSelect(struct Window *,struct GadList *,SHORT,USHORT,USHORT);
  27. void ChangeITModes(struct ITextList *,SHORT,UBYTE,UBYTE);
  28.  
  29. #endif    /* GADSEL_H */
  30.