home *** CD-ROM | disk | FTP | other *** search
- #ifndef VCX_PRIVATE_H
- #define VCX_PRIVATE_H
-
- /*
- * COPYRIGHT
- * The material published in this distribution is Freeware.
- * Copyright ⌐ 1992 remains at the author, Stefan Reisner.
- *
- * It may only be passed on unmodified and in its present
- * composition. In particular, this copyright notice must be
- * included and must be intact.
- */
-
- #include "vcx.h"
-
- /* instance data structure */
- struct VCX
- {
- int total, top, visible;
- UWORD freedom;
- APTR less_image;
- APTR more_image;
- APTR prop, less, more;
- };
-
- /* button IDs */
- #define LESS_ID 1
- #define MORE_ID 2
-
- #endif
-