home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / misc / vcb10a.lha / vcx_private.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-10-29  |  574 b   |  31 lines

  1. #ifndef VCX_PRIVATE_H
  2. #define VCX_PRIVATE_H
  3.  
  4. /*
  5.  *    COPYRIGHT
  6.  *        The material published in this distribution is Freeware.
  7.  *        Copyright ⌐ 1992 remains at the author, Stefan Reisner.
  8.  *        
  9.  *        It may only be passed on unmodified and in its present
  10.  *        composition. In particular, this copyright notice must be
  11.  *        included and must be intact.
  12.  */
  13.  
  14. #include "vcx.h"
  15.  
  16. /* instance data structure */
  17. struct VCX
  18. {
  19.     int total, top, visible;
  20.     UWORD freedom;
  21.     APTR less_image;
  22.     APTR more_image;
  23.     APTR prop, less, more;
  24. };
  25.  
  26. /* button IDs */
  27. #define LESS_ID    1
  28. #define MORE_ID    2
  29.  
  30. #endif
  31.