home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / misc / vcb.lha / vcb / vcx_private.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-15  |  287 b   |  22 lines

  1. #ifndef VCX_PRIVATE_H
  2. #define VCX_PRIVATE_H
  3.  
  4. #include "vcx.h"
  5.  
  6. /* instance data structure */
  7. struct VCX
  8. {
  9.     int total, top, visible;
  10.     UWORD freedom;
  11.     APTR less_image;
  12.     APTR more_image;
  13.     APTR prop, less, more;
  14.     APTR target;
  15. };
  16.  
  17. /* button IDs */
  18. #define LESS_ID    1
  19. #define MORE_ID    2
  20.  
  21. #endif
  22.