home *** CD-ROM | disk | FTP | other *** search
- #ifndef adjuster_H
- #define adjuster_H
-
- /* C header file for Adjuster
- * written by DefMod (Aug 30 1995) on Tue Sep 5 16:29:24 1995
- * Jonathan Coxhead, Acorn Computers Ltd
- */
-
- #ifndef types_H
- #include "types.h"
- #endif
-
- #ifndef toolbox_H
- #include "toolbox.h"
- #endif
-
- #ifndef gadget_H
- #include "gadget.h"
- #endif
-
- /************************************
- * Structure and union declarations *
- ************************************/
- typedef struct adjuster_gadget adjuster_gadget;
- typedef struct adjuster_action_clicked adjuster_action_clicked;
-
- /********************
- * Type definitions *
- ********************/
- struct adjuster_gadget
- { int reserved;
- };
-
- struct adjuster_action_clicked
- { bool up;
- };
-
- /************************
- * Constant definitions *
- ************************/
- #define class_ADJUSTER ((toolbox_class) 0x300u)
- #define adjuster_INCREMENT ((gadget_flags) 0x1u)
- #define adjuster_VERTICAL ((gadget_flags) 0x2u)
- #define action_ADJUSTER_CLICKED 0x8288Cu
-
- #endif
-