home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 215.lha / AmyLoad / windowinfo.h < prev    next >
Text File  |  1996-02-14  |  325b  |  16 lines

  1. #define BORDERWIDTH  2
  2. #define BORDERHEIGHT 1
  3.  
  4. #define WINDOWINFO(window) ((WindowInfo *)window->UserData)
  5.  
  6. typedef struct {
  7.     MinList loadrecords;
  8.     short   leftedge;
  9.     short   rightedge;
  10.     short   width;
  11.     short   topedge;
  12.     short   bottomedge;
  13.     short   height;
  14.     unsigned char back_pen_num;
  15. } WindowInfo;
  16.