home *** CD-ROM | disk | FTP | other *** search
- #ifndef labelledbox_H
- #define labelledbox_H
-
- /* C header file for LabelledBox
- * written by DefMod (Aug 30 1995) on Tue Sep 5 16:29:14 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 labelledbox_gadget labelledbox_gadget;
-
- /********************
- * Type definitions *
- ********************/
- struct labelledbox_gadget
- { toolbox_msg_reference label;
- };
-
- /************************
- * Constant definitions *
- ************************/
- #define class_LABELLED_BOX ((toolbox_class) 0x100u)
- #define labelledbox_SPRITE ((gadget_flags) 0x1u)
- #define labelledbox_SPRITE_IS_FILLED ((gadget_flags) 0x2u)
-
- #endif
-