home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 418.lha / GadgetSelect / gadsel.h < prev    next >
C/C++ Source or Header  |  1990-08-31  |  625b  |  24 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. void GadgetSelect(struct Window *,struct GadList *,SHORT,USHORT,USHORT);
  22.  
  23. #endif    /* GADSEL_H */
  24.