home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Resources / System / BoingBag1 / Contributions / InstallerNG / GUI-API / savagelib / include / savage / visible.h < prev    next >
C/C++ Source or Header  |  1999-08-14  |  217b  |  19 lines

  1.  
  2. #ifndef SAVAGE_VISIBLE_H
  3. #define SAVAGE_VISIBLE_H
  4.  
  5. #include <exec/types.h>
  6.  
  7. struct Visible
  8. {
  9.   UWORD vis_MinX;
  10.   UWORD vis_MinY;
  11.   UWORD vis_MaxX;
  12.   UWORD vis_MaxY;
  13.   UWORD vis_Width;
  14.   UWORD vis_Height;
  15. };
  16.  
  17. #endif
  18.  
  19.