home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / DESIG15R.LHA / Designer / MultipleDemo / Defs.h next >
Encoding:
C/C++ Source or Header  |  1994-10-15  |  220 b   |  10 lines

  1. struct WindowNode
  2. {
  3.   struct WindowNode *ln_Succ;
  4.   struct WindowNode *ln_Pred;
  5.   struct Window *Win;
  6.   struct Gadget *WinGList;
  7.   struct Gadget *WinGadgets[10];
  8.   void * WinVisualInfo;
  9.   struct DrawInfo *WinDrawInfo;
  10. };